Files
Tagir Valeev 41b2c21759 [java-highlighting] Implicit constructor call problems migrated
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only)

GitOrigin-RevId: eb4befa6b9d6d9b5b8c968fed54abb11c419f578
2025-01-15 19:19:41 +00:00

13 lines
209 B
Java

// "Add exception to method signature" "true-preview"
import java.io.IOException;
class Super {
Super() throws IOException {
}
}
class Sub extends Super {
Sub(int x) throws IOException {
}
}