mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
8 lines
167 B
Java
8 lines
167 B
Java
// "Add 'throws RuntimeException' to method signature" "true-preview"
|
|
class a {
|
|
int f() throws RuntimeException {
|
|
throw new RuntimeException()<caret>;
|
|
}
|
|
}
|
|
|