Source file test/typeparam/issue50121b.dir/main.go
1 package main 2 3 import ( 4 "./d" 5 "fmt" 6 ) 7 8 func main() { 9 if got, want := d.BuildInt(), 42; got != want { 10 panic(fmt.Sprintf("got %d, want %d", got, want)) 11 } 12 } 13
1 package main 2 3 import ( 4 "./d" 5 "fmt" 6 ) 7 8 func main() { 9 if got, want := d.BuildInt(), 42; got != want { 10 panic(fmt.Sprintf("got %d, want %d", got, want)) 11 } 12 } 13