Initial commit: Go 1.23 release state
This commit is contained in:
10
test/typeparam/dedup.dir/a.go
Normal file
10
test/typeparam/dedup.dir/a.go
Normal file
@@ -0,0 +1,10 @@
|
||||
// Copyright 2021 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
|
||||
|
||||
//go:noinline
|
||||
func F[T comparable](a, b T) bool {
|
||||
return a == b
|
||||
}
|
||||
14
test/typeparam/dedup.dir/b.go
Normal file
14
test/typeparam/dedup.dir/b.go
Normal file
@@ -0,0 +1,14 @@
|
||||
// Copyright 2021 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() {
|
||||
var x int64
|
||||
println(a.F(&x, &x))
|
||||
var y int32
|
||||
println(a.F(&y, &y))
|
||||
}
|
||||
14
test/typeparam/dedup.dir/c.go
Normal file
14
test/typeparam/dedup.dir/c.go
Normal file
@@ -0,0 +1,14 @@
|
||||
// Copyright 2021 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 c
|
||||
|
||||
import "./a"
|
||||
|
||||
func C() {
|
||||
var x int64
|
||||
println(a.F(&x, &x))
|
||||
var y int32
|
||||
println(a.F(&y, &y))
|
||||
}
|
||||
15
test/typeparam/dedup.dir/main.go
Normal file
15
test/typeparam/dedup.dir/main.go
Normal file
@@ -0,0 +1,15 @@
|
||||
// Copyright 2021 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 main
|
||||
|
||||
import (
|
||||
"./b"
|
||||
"./c"
|
||||
)
|
||||
|
||||
func main() {
|
||||
b.B()
|
||||
c.C()
|
||||
}
|
||||
Reference in New Issue
Block a user