Initial commit: Go 1.23 release state
This commit is contained in:
8
test/fixedbugs/issue12677.dir/p.go
Normal file
8
test/fixedbugs/issue12677.dir/p.go
Normal file
@@ -0,0 +1,8 @@
|
||||
// Copyright 2015 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 p
|
||||
func Baz(f int) float64 {
|
||||
return 1 / float64(int(1)<<(uint(f)))
|
||||
}
|
||||
7
test/fixedbugs/issue12677.dir/q.go
Normal file
7
test/fixedbugs/issue12677.dir/q.go
Normal file
@@ -0,0 +1,7 @@
|
||||
// Copyright 2015 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 q
|
||||
import "./p"
|
||||
func f() { println(p.Baz(2)) }
|
||||
Reference in New Issue
Block a user