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