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

13 lines
159 B
Java

class A {
{
g();
}
int <caret>g() {
try {
return 0;
} catch (Error e) {
throw e;
}
}
}