What changes will make the above code compile?
class X { X () { } private void one () { }
}
public class Y extends X { Y () { } private void two () { one();
}
public static void main (String [] args) { new Y().two ();
}
}
Reveal answer
Fill a bubble to check yourself