Sign in
go
/
go
/
c7ccabf3fea67f002bef190a5ffc7417f4371a23
/
.
/
test
/
typeparam
/
issue50121b.dir
/
main.go
blob: 33986018506d5964c51617bbe142051daf21e90f [
file
] [
log
] [
blame
]
package main
import (
"./d"
"fmt"
)
func main() {
if got, want := d.BuildInt(), 42; got != want {
panic(fmt.Sprintf("got %d, want %d", got, want))
}
}