mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 01:06:54 +07:00
10 lines
167 B
Java
10 lines
167 B
Java
class Simple {
|
|
|
|
void x(int <warning descr="Value of parameter 'i' is always '10'"><caret>i</warning>) {
|
|
System.out.println(i);
|
|
}
|
|
|
|
void y() {
|
|
x(10);
|
|
}
|
|
} |