mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 08:52:52 +07:00
GitOrigin-RevId: d66de66e71fed85b5d1f774c504d74a3963476bd
12 lines
187 B
Java
12 lines
187 B
Java
class Vararg {
|
|
|
|
void x(byte... <warning descr="Value of parameter 'bs' is always '(byte)1'"><caret>bs</warning>) {
|
|
for (byte b : bs) {
|
|
|
|
}
|
|
}
|
|
|
|
void y() {
|
|
x((byte)1);
|
|
}
|
|
} |