mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 12db0098047932e92ac468072095492cb558adea
8 lines
287 B
Java
8 lines
287 B
Java
class NotUsedTest {
|
|
public static void main(String[] args) {
|
|
boolean unused = true;
|
|
<warning descr="The value 'true' assigned to 'unused' is never used">unused</warning> = true;
|
|
<warning descr="The value 'true' assigned to 'unused' is never used">unused</warning> = true;
|
|
}
|
|
}
|