mirror of
https://github.com/golang/go
synced 2024-11-19 08:34:39 -07:00
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
|