blob: 345868dcde9447eec3ac9c658d5864084b497a30 [file] [log] [blame]
package main
import "swigtests/ret_by_value"
func main() {
a := ret_by_value.Get_test()
if a.GetMyInt() != 100 {
panic(0)
}
if a.GetMyShort() != 200 {
panic(0)
}
}