blob: c52d672528cd4e89a75127da122902dfb0c1cfcb [file] [log] [blame]
class X {
String <caret>l;
public X() {
fs("oo", this);
}
void fs(String t, X x)
{
x.set(t);
}
//
void set(String d) {
l = d;
}
}
class XX extends X {
void fs(String t, X x) {
x.fs(t, x);
}
}