Sign in
go
/
vscode-go
/
97c9ecd4d2cb2748bbb707db859c603b1ee7e5a3
/
.
/
extension
/
test
/
testdata
/
packageOutlineTest
/
symbols_1.go
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() {
}