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