Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/go/template_extend1_runme.go
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

17 lines
213 B
Go

package main
import "./template_extend1"
func main() {
a := template_extend1.NewLBaz()
b := template_extend1.NewDBaz()
if a.Foo() != "lBaz::foo" {
panic(0)
}
if b.Foo() != "dBaz::foo" {
panic(0)
}
}