Skip to content

Instantly share code, notes, and snippets.

@butuzov
Created July 26, 2020 10:52
Show Gist options
  • Save butuzov/4a682fd28bc89c1bdb6f1cc7996e9cfb to your computer and use it in GitHub Desktop.
Save butuzov/4a682fd28bc89c1bdb6f1cc7996e9cfb to your computer and use it in GitHub Desktop.
package main
func main() {}
//nolint:deaccode
func add(a, b int) int {
a += 10
b += 11
return a + b
}
func nouse() {}
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