blob: e584cf7a221c5d41fc4ba07f4af55154478c8208 [file] [log] [blame]
package main
import . "smart_pointer_multi_typedef"
func main() {
f := NewFoo()
b := NewBar(f)
s := NewSpam(b)
g := NewGrok(b)
s.SetX(3)
if s.Getx() != 3 {
panic(0)
}
g.SetX(4)
if g.Getx() != 4 {
panic(0)
}
}