mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 07:14:21 +07:00
12 lines
208 B
Java
12 lines
208 B
Java
class C {
|
|
{
|
|
final C c1 = new C();
|
|
C c = c1;
|
|
Runnable r = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
c1;
|
|
}
|
|
};
|
|
}
|
|
} |