blob: 6eb3769627882bba3c337fa60604e4217ce43925 [file] [log] [blame]
public class YoYo {
int y;
static class YoYoYo {
private YoYo anObject;
public YoYoYo(YoYo anObject) {
this.anObject = anObject;
}
void foo (){
YoYo yoYoy = anObject;
int t = anObject.y;
int t1 = yoYoy.y;
anObject.new Other();
}
}
class Other {}
}