mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
20 lines
268 B
Java
20 lines
268 B
Java
import java.io;
|
|
|
|
class A {
|
|
public void test() {
|
|
Inlined i = new Inlined();
|
|
}
|
|
}
|
|
|
|
class <caret>Inlined {
|
|
public class A {
|
|
}
|
|
|
|
private A myA = new A();
|
|
|
|
public String toString() {
|
|
A a = new A();
|
|
return a.toString();
|
|
}
|
|
}
|