Files
openide/java/java-tests/testData/refactoring/changeSignature/AddRuntimeException_after.java
Dmitry Jemerov b854be0323 test++
2009-09-10 20:09:11 +04:00

9 lines
103 B
Java

class Test {
void foo () throws RuntimeException {
}
void bar () {
foo();
}
}