blob: cc4db9f2df0eda6521a631873ff172cb412ffd60 [file] [log] [blame]
// +build OMIT
package main
import "fmt"
type Vertex struct {
X, Y int
}
func main() {
v := new(Vertex)
fmt.Println(v)
v.X, v.Y = 11, 9
fmt.Println(v)
}