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

14 lines
175 B
Java

// "Remove 'IOException' from 'f()' throws list" "true-preview"
import java.io.*;
class a {
void f() {
}
}
class b extends a {
void f() throws <caret>IOException {
}
}