Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/methodThrows/beforeNative.java
Bas Leijdekkers 9addc5eaf7 java: include parentheses () in text when referring to methods
GitOrigin-RevId: 1cfc8afb26b5db175d865f6bbdc752356040d8bb
2022-08-22 17:58:06 +00:00

12 lines
275 B
Java

// "Remove 'IOException' from 'foo()' throws list" "false"
import java.io.*;
class Bar {
public native int goDrink(String arg) throws IOExce<caret>ption;
public static void main(String[] args) throws IOException {
Bar bar = new Bar();
bar.goDrink("aaa");
}
}