mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 14:17:48 +07:00
GitOrigin-RevId: 1f370ec15dad0027f8625131c67795e15586edd5
15 lines
284 B
Java
15 lines
284 B
Java
public class TestClass {
|
|
void x() {
|
|
new Exception() {
|
|
private int j = doSomething();
|
|
|
|
int doSomething() { return 1; }
|
|
void a() {
|
|
j;
|
|
}
|
|
void b() {
|
|
j;
|
|
}
|
|
};
|
|
}
|
|
} |