Files
openide/java/java-tests/testData/psi/formatter/java/AnonymousInnerClasses.java
T
Denis Zhdanov e42c2fdcab IDEA-54000 Move java formatting tests to community edition
Moved from 'idea-tests' to 'java-tests' because java formatter belongs to community edition
2010-04-19 19:26:51 +04:00

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();
}
};
}
}