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))
}
}