Sign in
go
/
tools
/
9dcd3d5dc8a4c0f7078858978e5d9243136e66da
/
.
/
cmd
/
bundle
/
testdata
/
src
/
initial
/
b.go
blob: 31d5cabe73e30b3a7a1258666a1be545413d8697 [
file
] [
log
] [
blame
]
// The package doc comment
package initial
import (
"fmt"
"domain.name/importdecl"
)
type t int
// type1
// const1
const c = 1
// const2
func foo() {
fmt.Println(importdecl.F())
}
// zinit
const (
z1 = iota
// z1
z2
// z2
)
// zend