blob: daf04640785457bd0308711ecea46f1dc8d51444 [file] [log] [blame]
// +build OMIT
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
p := Vertex{1, 2}
q := &p
q.X = 1e9
fmt.Println(p)
}