blob: 19b81b6fe2b0d3f4399a6aedcf83e17d6f143520 [file] [edit]
// This file exists so that we can check that multi-file packages work
package main
import "fmt"
type t struct{}
func (x t) a() error {
fmt.Println("this method returns an error") // EXCLUDED
//line myfile.txt:100
fmt.Println("this method also returns an error") // EXCLUDED
return nil
}
type u struct {
t t
}