blob: 18440ec2401929379c122b7e9ad1064f6d0b4a26 [file] [log] [blame]
public 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);
}
}