mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
Moved from 'idea-tests' to 'java-tests' because java formatter belongs to community edition
17 lines
244 B
Java
17 lines
244 B
Java
public class A {
|
|
void f() {
|
|
new My() {
|
|
public void f() {
|
|
int i = 9;
|
|
int j = 9;
|
|
}
|
|
};
|
|
new My() {
|
|
public void f() {
|
|
l();
|
|
l();
|
|
}
|
|
};
|
|
}
|
|
|
|
} |