mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: d66de66e71fed85b5d1f774c504d74a3963476bd
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);
|
|
}
|
|
} |