Skip to content

Instantly share code, notes, and snippets.

@sheenobu
Last active September 13, 2016 18:00
Show Gist options
  • Save sheenobu/d3d935236583e1551ad54efc41862385 to your computer and use it in GitHub Desktop.
Save sheenobu/d3d935236583e1551ad54efc41862385 to your computer and use it in GitHub Desktop.
golang syntax highlighting bug
type A struct {
Hello string
}
type B func(i interface{}) (interface{}, error)
type A struct {
Hello string
}
type B func(i interface{}) interface{}
type A struct {
Hello string
}
type B func(i interface{}) error
type A struct {
Hello string
}
type B func(i interface{}) (interface{}, error)
// Comment
type A struct {
Hello string
}
type B func(i x) (err error)
// Comment
type A struct {
Hello string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment