Files
moxa/_test/nil2.go
2020-04-25 17:16:03 +02:00

13 lines
149 B
Go

package main
func test() error { return nil }
func main() {
if err := test(); nil == err {
println("err is nil")
}
}
// Output:
// err is nil