mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: 1e1b77009dc78de49c7cc5c44d4704937397bb23
9 lines
176 B
Java
9 lines
176 B
Java
// "Make 'C' extend 'java.lang.Throwable'" "true-preview"
|
|
|
|
class C extends Throwable <caret>{}
|
|
class Main {
|
|
public static void main(String[] args) {
|
|
throw new C();
|
|
}
|
|
}
|