mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
12 lines
136 B
Go
12 lines
136 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import "./q1"
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
x := 1
|
||
|
|
y := q1.Deref(&x)
|
||
|
|
if y != 1 {
|
||
|
|
panic("y != 1")
|
||
|
|
}
|
||
|
|
}
|