aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/go/typemap_namespace_runme.go
blob: a2880d4a8923e8a1756a9e2d0a8dd073632f324b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package main

import . "typemap_namespace"

func main() {
	if Test1("hello") != "hello" {
		panic(0)
	}

	if Test2("hello") != "hello" {
		panic(0)
	}
}