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

9 lines
103 B
Java

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