mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
- fix Introduce variable throws exception in implicit classes GitOrigin-RevId: c3489b1c6df3669f01b6e5defbf8a2208a7b441d
9 lines
98 B
Java
9 lines
98 B
Java
class Nested {
|
|
}
|
|
|
|
void main() {
|
|
Class<Nested> x = Nested.class;
|
|
System.out.println(x);
|
|
}
|
|
|