mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
21 lines
368 B
Java
21 lines
368 B
Java
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 {}
|
|
}
|
|
|