Initial commit: Go 1.23 release state
This commit is contained in:
11
test/fixedbugs/issue10066.dir/a.go
Normal file
11
test/fixedbugs/issue10066.dir/a.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package a
|
||||
|
||||
import "log"
|
||||
|
||||
func Do() {
|
||||
Do2()
|
||||
}
|
||||
|
||||
func Do2() {
|
||||
println(log.Ldate | log.Ltime | log.Lshortfile)
|
||||
}
|
||||
7
test/fixedbugs/issue10066.dir/b.go
Normal file
7
test/fixedbugs/issue10066.dir/b.go
Normal file
@@ -0,0 +1,7 @@
|
||||
package b
|
||||
|
||||
import "./a"
|
||||
|
||||
func test() {
|
||||
a.Do()
|
||||
}
|
||||
Reference in New Issue
Block a user