Created
July 26, 2020 10:52
-
-
Save butuzov/4a682fd28bc89c1bdb6f1cc7996e9cfb to your computer and use it in GitHub Desktop.
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
package main | |
func main() {} | |
//nolint:deaccode | |
func add(a, b int) int { | |
a += 10 | |
b += 11 | |
return a + b | |
} | |
func nouse() {} |
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
package main | |
func main() {} | |
//nolint:deadcode | |
func add(a, b int) int { | |
a += 10 | |
b += 11 | |
return a + b | |
} | |
func nouse() {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment