mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: 5a336e0ffaab8b530458dba3bba689e6eea70ace
16 lines
291 B
Java
16 lines
291 B
Java
// "Suppress for method in injection" "true"
|
|
import org.intellij.lang.annotations.Language;
|
|
|
|
class X {
|
|
@Language("JAVA")
|
|
String s = """
|
|
class EmptyArray {
|
|
@SuppressWarnings("SillyAssignment")
|
|
public void run() {
|
|
int i = 0;
|
|
i = i;
|
|
}
|
|
}
|
|
""";
|
|
}
|