1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// +build OMIT package main import "fmt" func main() { // START OMIT type MyFloat64 float64 const Zero = 0.0 const TypedZero float64 = 0.0 var mf MyFloat64 mf = 0.0 // OK mf = Zero // OK mf = TypedZero // Bad fmt.Println(mf) // STOP OMIT }