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