git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12108 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
182 B
Go
11 lines
182 B
Go
package main
|
|
|
|
import "./memberin_extend_c"
|
|
|
|
func main() {
|
|
t := memberin_extend_c.NewPerson()
|
|
t.SetName("Fred Bloggs")
|
|
if t.GetName() != "FRED BLOGGS" {
|
|
panic("name wrong")
|
|
}
|
|
}
|