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