Encapsulation, Inheritance, Casting & Access Modifiers

Question 1 of 17

Given the following,
class Tree {
        Tree(String str) { }
}

public class Fir extends Tree {
         Fir( ) { }
         Fir(String s) {
               super(s);
         }
}
What is the result of compiling the above ?