mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-07 13:51:47 +07:00
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")) { }
|
|
}
|
|
} |