mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
20 lines
320 B
Java
20 lines
320 B
Java
public class YoYo {
|
|
static class YoYoYo {
|
|
private YoYo anObject;
|
|
|
|
public YoYoYo(YoYo anObject) {
|
|
this.anObject = anObject;
|
|
}
|
|
|
|
void foo (){
|
|
YoYo yoYoy = anObject;
|
|
}
|
|
}
|
|
|
|
class Other {
|
|
{
|
|
new YoYoYo(YoYo.this);
|
|
}
|
|
}
|
|
}
|