/trunk/Examples/test-suite/go/typemap_namespace_runme.go

# · Go · 13 lines · 10 code · 3 blank · 0 comment · 4 complexity · 5aab8ef090600c25b7c5f67cb81b439b MD5 · raw file

  1. package main
  2. import . "./typemap_namespace"
  3. func main() {
  4. if Test1("hello") != "hello" {
  5. panic(0)
  6. }
  7. if Test2("hello") != "hello" {
  8. panic(0)
  9. }
  10. }