Files
openide/java/java-tests/testData/refactoring/changeSignature/LessSpecificException.java

8 lines
192 B
Java

class Test {
int <caret>foo() throws IllegalArgumentException { return 1;}
void fooBar() throws IllegalArgumentException{
int a = foo();
System.out.println(a);
}
}