mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
8 lines
162 B
Java
8 lines
162 B
Java
// "Add runtime exception(s) to method signature" "true-preview"
|
|
class a {
|
|
int f() throws RuntimeException {
|
|
throw new RuntimeException()<caret>;
|
|
}
|
|
}
|
|
|