(root)/
gcc-13.2.0/
gcc/
testsuite/
go.test/
test/
fixedbugs/
issue10066.dir/
a.go
package a

import "log"

func Do() {
	Do2()
}

func Do2() {
	println(log.Ldate | log.Ltime | log.Lshortfile)
}