What happens when you try to compile and run this code?
class Parent {
Parent(int x) {
System.out.println("Parent Constructor " + x);
}
}
class Child extends Parent {
}
public class Test {
public static void main(String[] args) {
new Child();
}
}