Files
Bas Leijdekkers 9addc5eaf7 java: include parentheses () in text when referring to methods
GitOrigin-RevId: 1cfc8afb26b5db175d865f6bbdc752356040d8bb
2022-08-22 17:58:06 +00:00

8 lines
141 B
Java

// "Remove 'RuntimeException' from 'f()' throws list" "false"
import java.io.*;
class a {
void f() throws <caret>RuntimeException {
}
}