1package a
2
3import "log"
4
5func Do() {
6	Do2()
7}
8
9func Do2() {
10	println(log.Ldate | log.Ltime | log.Lshortfile)
11}
12