mirror of
https://github.com/golang/go
synced 2024-11-25 15:08:02 -07:00
test: match gccgo error messages for bug345
bug345.dir/main.go:25:18: error: argument 1 has incompatible type (need explicit conversion; missing method ‘Write’) bug345.dir/main.go:27:8: error: argument 1 has incompatible type R=golang-dev, gri CC=golang-dev https://golang.org/cl/5556043
This commit is contained in:
parent
24c76f68ed
commit
6a5db20d14
@ -22,7 +22,7 @@ func main() {
|
|||||||
// main.go:27: cannot use &x (type *"io".SectionReader) as type *"/Users/rsc/g/go/test/fixedbugs/bug345.dir/io".SectionReader in function argument
|
// main.go:27: cannot use &x (type *"io".SectionReader) as type *"/Users/rsc/g/go/test/fixedbugs/bug345.dir/io".SectionReader in function argument
|
||||||
|
|
||||||
var w io.Writer
|
var w io.Writer
|
||||||
bufio.NewWriter(w) // ERROR "test/io"
|
bufio.NewWriter(w) // ERROR "test/io|has incompatible type"
|
||||||
var x goio.SectionReader
|
var x goio.SectionReader
|
||||||
io.SR(&x) // ERROR "test/io"
|
io.SR(&x) // ERROR "test/io|has incompatible type"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user