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

7 lines
87 B
Plaintext

class NestedCall {
int foo(int p) { return p; }
{
foo(foo(0));
}
}