go_winter_work_2025/go/lesson6/linting/gosimple/gosimple.go
2025-02-25 20:56:21 +03:00

14 lines
146 B
Go

package main
func main() {
_ = fn1()
}
func fn1() bool {
x := true
if x { //@ diag(`should use 'return x'`)
return true
}
return false
}