mirror of https://github.com/golang/go.git
18 lines
302 B
Plaintext
18 lines
302 B
Plaintext
-- suggestedfix_stub_assign_7_7 --
|
|
package stub
|
|
|
|
import "io"
|
|
|
|
func main() {
|
|
var br io.ByteWriter
|
|
br = &byteWriter{} //@suggestedfix("&", "refactor.rewrite", "")
|
|
}
|
|
|
|
type byteWriter struct{}
|
|
|
|
// WriteByte implements io.ByteWriter
|
|
func (*byteWriter) WriteByte(c byte) error {
|
|
panic("unimplemented")
|
|
}
|
|
|