blob: 52edb8d24aaefddf7d3396b5f802187d7a764250 [file] [log] [blame]
//go:build OMIT
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
fmt.Println(Vertex{1, 2})
}