blob: 74a2291f5140a5635942d8d9c42b62afc55bd75e [file] [log] [blame]
-- .Play --
package main
import "fmt"
type X int
func (X) Foo() {
}
func (X) TestBlah() {
}
func (X) BenchmarkFoo() {
}
func main() {
fmt.Println("Hello, world!")
}
-- .Output --
Hello, world!