blob: 23b54897eb65694d723388947aba45638847caa6 [file] [log] [blame]
class Test {
public int m(int a, int... values) {
if(a > values.length) {
return <selection>0</selection>;
}
else {
return 0;
}
}
}