// "Create constructor matching super" "true" public class Test { Test (T t) {} } class Derived extends Test { Derived(String s) { super(s); } }