mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
8 lines
283 B
Java
8 lines
283 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;
|
|
}
|
|
}
|