Sign in
go
/
website
/
2bbd800a01aeb03d937def7e3722b8a47ef9b06c
/
.
/
_content
/
talks
/
2014
/
compiling
/
name1.go
blob: 9a82f243cc5e1603c0c40f65c8bdcbd9b75c645e [
file
] [
log
] [
blame
]
// +build ignore
package main
import "fmt"
// 2 START OMIT
// 1 START OMIT
func main() {
i := 1
f := func() T {
return T{
i: 1,
// HL
}
}
fmt.Println(i, f())
}
// 1 END OMIT
type T map[int]int
// 2 END OMIT