mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
12 lines
275 B
Java
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");
|
|
}
|
|
} |