Files
openide/plugins/groovy/testdata/refactoring/changeSignatureForJava/AddRuntimeException_after.java
Maxim Medvedev 9fa3c7dc51 tests
2010-05-26 14:19:28 +04:00

9 lines
103 B
Java

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