1package main 2 3import "./q1" 4 5func main() { 6 x := 1 7 y := q1.Deref(&x) 8 if y != 1 { 9 panic("y != 1") 10 } 11} 12