Instantiators can't handle something like this: ``` java class Parent { int x; Parent(int x) { this.x = x; } } class Child { Child(int x) { super(x); } } ```
Instantiators can't handle something like this: