blob: 678c305c8ab12a3d2189b4d248d377ca0a1f8a75 [file] [log] [blame]
package main
import . "./smart_pointer_rename"
func main() {
f := NewFoo()
b := NewBar(f)
if b.Test() != 3 {
panic(0)
}
if b.Ftest1(1) != 1 {
panic(0)
}
if b.Ftest2(2, 3) != 2 {
panic(0)
}
}