Sign in
◑
Theme
go
/
go.git
/
06478e4b4659966e4f5dba1f399da9767995fee5
/
.
/
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)
}