下面这段代码输出什么?
func main() { var i interface{} if i == nil { fmt.Println("nil") return } fmt.Println("not nil") }
A. nil B. not nil C. compilation error