blob: 0a250d0a7390af5d045408458b2e48edc1621313 [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);
}
}