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