Source file test/fixedbugs/issue7050.go
1 // run 2 3 // Copyright 2014 The Go Authors. All rights reserved. 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file. 6 7 package main 8 9 import ( 10 "fmt" 11 "os" 12 ) 13 14 func main() { 15 _, err := os.Stdout.Write(nil) 16 if err != nil { 17 fmt.Printf("BUG: os.Stdout.Write(nil) = %v\n", err) 18 } 19 } 20