mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
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;
|
|
}
|
|
};
|
|
}
|
|
} |