mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 22:42:49 +07:00
f7f0a5c0c4
PSI, parser, highlighting, exception analysis, control flow, completion.
8 lines
269 B
Java
8 lines
269 B
Java
import java.io.*;
|
|
|
|
class UnsupportedFeatures {
|
|
void m() throws Exception {
|
|
Reader r1 = new FileReader("/dev/null");
|
|
try (<error descr="Resource references are not supported at this language level">r1</error>; Reader r2 = new FileReader("/dev/null")) { }
|
|
}
|
|
} |