Last active
September 13, 2016 18:00
-
-
Save sheenobu/d3d935236583e1551ad54efc41862385 to your computer and use it in GitHub Desktop.
golang syntax highlighting bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type A struct { | |
Hello string | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type B func(i interface{}) (interface{}, error) | |
type A struct { | |
Hello string | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type B func(i interface{}) interface{} | |
type A struct { | |
Hello string | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type B func(i interface{}) error | |
type A struct { | |
Hello string | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type B func(i interface{}) (interface{}, error) | |
// Comment | |
type A struct { | |
Hello string | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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