mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
20 lines
359 B
Java
20 lines
359 B
Java
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;
|
|
}
|
|
}
|
|
}
|
|
|