blob: 9bf42f88f7397f060a83db445d0b93fc9f92833a [file] [log] [blame]
package package_outline_test
import (
"fmt"
)
func print(txt string) {
fmt.Println(txt)
}
func main() {
print("Hello")
}
type TestReceiver struct {
field1 int
field2 string
field3 bool
}
func (*TestReceiver) method1() {
}