1 package main 2 3 func wptr(x *int32) { 4 println(*x) 5 } 6 7 func main() { 8 v := int32(42) 9 spawn(wptr, &v) // ERROR: pointer type 10 } 11