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