mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 04:43:02 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: 1e1b77009dc78de49c7cc5c44d4704937397bb23
11 lines
238 B
Java
11 lines
238 B
Java
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class A {
|
|
static final int x = <error descr="Incompatible types. Found: 'null', required: 'int'">null;</error>
|
|
|
|
void test() {
|
|
long y = x;
|
|
}
|
|
}
|