add test for IDEA-205525

This commit is contained in:
Dmitry Batkovich
2019-01-18 15:12:38 +03:00
parent 73c618ebfe
commit 183921ba14

View File

@@ -0,0 +1,12 @@
// "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");
}
}