아래 코드를 실행하면 checkEggOneSet() 함수에서 파라미터 p 와 nil 을 비교할 때 에러가 발생한다. compare_pointer_to_nil_test.go|13| cannot convert nil to type Person package main import "fmt" type Age int type Person struct { age Age gender string } func checkEggOneSet(p Person) bool { if p != nil && p.age >= 30