blob: 112f7bcae714f60d4a40bcc7272578ec22bcfcd7 [file] [log] [blame]
// +build ignore,OMIT
package main
import "os"
func main() {
var w func([]byte) (int, error)
w = os.Stdout.Write
w([]byte("hello!\n"))
}