mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
231 B
Java
15 lines
231 B
Java
public class YoYo {
|
|
int y;
|
|
class <caret>YoYoYo {
|
|
void foo (){
|
|
YoYo yoYoy = YoYo.this;
|
|
int t = y;
|
|
int t1 = yoYoy.y;
|
|
new Other();
|
|
}
|
|
}
|
|
|
|
class Other {}
|
|
}
|
|
|