blob: 0ea69400863e0bb6013b5d604438066e41c3de21 [file] [log] [blame]
class Test {
public int m(int a, int b) {
if(a > b) {
return <selection>0</selection>;
}
else {
return 0;
}
}
}
class Test1 {
Test t;
public int n(int v) {
return t.m(v, 1);
}
}