Sign in
go
/
tools
/
75f23652ec9350444872409fc4937b2c32f1d60a
/
.
/
go
/
analysis
/
passes
/
tests
/
testdata
/
src
/
divergent
/
buf.go
blob: 0efe0f838d56ee6017b22aab81d9fe94dc1e1bd2 [
file
] [
log
] [
blame
]
// Test of examples with divergent packages.
// Package buf ...
package buf
// Buf is a ...
type Buf []byte
// Append ...
func (*Buf) Append([]byte) {}
func (Buf) Reset() {}
func (Buf) Len() int { return 0 }
// DefaultBuf is a ...
var DefaultBuf Buf