mirror of
https://github.com/golang/go
synced 2024-11-05 19:46:11 -07:00
6aaa86ff66
Fixes #2006. R=ken2 CC=golang-dev https://golang.org/cl/4643056
16 lines
279 B
Go
16 lines
279 B
Go
// Copyright 2011 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package io
|
|
|
|
type Writer interface {
|
|
WrongWrite()
|
|
}
|
|
|
|
type SectionReader struct {
|
|
X int
|
|
}
|
|
|
|
func SR(*SectionReader) {}
|