func fmt.Println

25 uses

	fmt (current package)
		print.go#L313: func Println(a ...any) (n int, err error) {

	go/parser
		parser.go#L103: 	fmt.Println(a...)
		resolver.go#L76: 	fmt.Println(strings.Repeat(". ", r.depth) + r.sprintf(format, args...))

	go/printer
		printer.go#L102: 		fmt.Println(msg...)

	go/types
		check.go#L510: 			fmt.Println()
		check.go#L511: 			fmt.Println(msg)
		check.go#L586: 			fmt.Println()
		decl.go#L65: 			fmt.Println() // empty line between top-level objects for readability
		format.go#L121: 	fmt.Println(sprintf(check.fset, check.qualifier, true, format, args...))
		infer.go#L231: 				fmt.Println()
		initorder.go#L33: 		fmt.Println("Object dependency graph:")
		initorder.go#L47: 		fmt.Println()
		initorder.go#L49: 		fmt.Println("Transposed object dependency graph (functions eliminated):")
		initorder.go#L56: 		fmt.Println()
		initorder.go#L58: 		fmt.Println("Processing nodes:")
		initorder.go#L128: 		fmt.Println()
		initorder.go#L129: 		fmt.Println("Initialization order:")
		initorder.go#L133: 		fmt.Println()
		unify.go#L148: 	fmt.Println(strings.Repeat(".  ", u.depth) + sprintf(nil, nil, true, format, args...))

	testing
		benchmark.go#L858: 			fmt.Println(benchName)
		testing.go#L2320: 		fmt.Println("-test.shuffle", n)
		testing.go#L2411: 			fmt.Println(test.Name)
		testing.go#L2416: 			fmt.Println(bench.Name)
		testing.go#L2421: 			fmt.Println(fuzzTarget.Name)
		testing.go#L2426: 			fmt.Println(example.Name)