mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 11:14:32 +07:00
9addc5eaf7
GitOrigin-RevId: 1cfc8afb26b5db175d865f6bbdc752356040d8bb
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");
|
|
}
|
|
} |