Sign in
go
/
go
/
3d3798e7fb03345f79a192f0a2acfc753325739b
/
.
/
test
/
typeparam
/
issue51423.dir
/
b.go
blob: 2bad19fbdac9f62797a88fad53ded351023fe6d5 [
file
]
package b
import "./a"
func C() a.Comparator[int] {
return a.CompareInt[int]
}
func main() {
_ = C()(1, 2)
}