blob: d8195ffb3e1ffe88009cbbb0e577e8796ff5caab [file] [log] [blame]
class Test {
public int m() {
return <selection>0</selection>;
}
}
class Test1 {
Test t;
public int n(int v) {
return t.m();
}
}