Sign in
go
/
tools
/
7822de7a2d58be72b99f5038ba95b8f5e55901c6
/
.
/
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