mirror of
https://github.com/golang/go
synced 2024-11-19 05:44:40 -07:00
6643abb26c
Suggested reading order: - doc.go - api.go, analysis.go, callgraph.go, labels.go - print.go, util.go - gen.go - solve.go - pointer_test.go, testdata/* - intrinsics.go (none are implemented yet) R=dannyb, gri, crawshaw, 0xjnml CC=golang-dev https://golang.org/cl/10618043
12 lines
145 B
Go
12 lines
145 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
// Analysis abstraction of recursive calls is finite.
|
|
|
|
func main() {
|
|
main()
|
|
}
|
|
|
|
// @calls main.main -> main.main
|