Files
openide/java/java-tests/testData/refactoring/inlineToAnonymousClass/ConstructorArgumentInExpression.java.after
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

15 lines
246 B
Plaintext

public class A {
public void test() {
Object i = new Object() {
private int a = 0;
{
int j = 5;
while (j < 10) j++;
a = 1 * j;
}
};
}
}