Initial commit: Go 1.23 release state
This commit is contained in:
18
test/fixedbugs/issue32922.dir/a.go
Normal file
18
test/fixedbugs/issue32922.dir/a.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// Copyright 2019 The Go Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package a
|
||||
|
||||
func A() int {
|
||||
return p("count")
|
||||
}
|
||||
|
||||
func p(which string, args ...string) int {
|
||||
switch which {
|
||||
case "count", "something":
|
||||
return 1
|
||||
default:
|
||||
return 2
|
||||
}
|
||||
}
|
||||
11
test/fixedbugs/issue32922.dir/b.go
Normal file
11
test/fixedbugs/issue32922.dir/b.go
Normal file
@@ -0,0 +1,11 @@
|
||||
// Copyright 2019 The Go Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package b
|
||||
|
||||
import "./a"
|
||||
|
||||
func B() int {
|
||||
return 99 + a.A()
|
||||
}
|
||||
Reference in New Issue
Block a user