mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-15 11:12:59 +07:00
10 lines
121 B
Java
10 lines
121 B
Java
public class Test {
|
|
final X x;
|
|
|
|
public Test() {
|
|
x = new X();
|
|
}
|
|
|
|
protected static class X {
|
|
}
|
|
} |