Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addRuntimeExceptionToThrows/before1.java
Bas Leijdekkers 5dda5cdb12 Java: improve intention text
GitOrigin-RevId: 72e2cbc6c1927af08401835f7e9ee4814ac26dea
2023-08-25 14:51:57 +00:00

8 lines
143 B
Java

// "Add 'throws RuntimeException' to method signature" "true-preview"
class a {
int f() {
throw new RuntimeException()<caret>;
}
}