2012-02-17 04:49:59 +00:00
|
|
|
// errorcheck
|
2011-07-28 16:31:16 +00:00
|
|
|
|
2016-04-10 21:32:26 +00:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2011-07-28 16:31:16 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// issue 2089 - internal compiler error
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
2011-09-20 23:47:17 +00:00
|
|
|
func echo(fd io.ReadWriterCloser) { // ERROR "undefined.*io.ReadWriterCloser"
|
2011-07-28 16:31:16 +00:00
|
|
|
var buf [1024]byte
|
|
|
|
for {
|
|
|
|
n, err := fd.Read(buf)
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
fd.Write(buf[0:n])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
fd, _ := os.Open("a.txt")
|
|
|
|
echo(fd)
|
|
|
|
}
|