blob: 459c1d42301ada68f768d6376c3fd751a8be3494 [file] [log] [blame]
//go: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)
}