Files
Georgii Ustinov 940f66f53d [Java. Inspections] Add tests for not showing popup for add exception to method signature
IDEA-358300

GitOrigin-RevId: a7b8c716d772ae5ca631037ebb923bb796946af9
2024-08-27 10:05:40 +00:00

14 lines
309 B
Java

// "Add 'throws UnsupportedOperationException' to method signature" "true-preview"
class A {
@Override
public String toString() {
return super.toString();
}
static class B extends A {
@Override
public String toString() {
throw new Unsupport<caret>edOperationException();
}
}
}