Sign in
go
/
tools
/
36a5c6a8a6d3dc45fbccd63e2fb38ef6911f33ce
/
.
/
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