blob: 16e7e6417ea114272e949e3b34ffa058133e73a9 [file] [log] [blame]
// +build OMIT
package main
import "fmt"
func main() {
// START OMIT
fmt.Printf("%T %v\n", 0, 0)
fmt.Printf("%T %v\n", 0.0, 0.0)
fmt.Printf("%T %v\n", 'x', 'x')
fmt.Printf("%T %v\n", 0i, 0i)
// STOP OMIT
}