blob: 6bb886c2f4688ff2c1e672af946a55ded19a91e7 [file] [log] [blame]
// "Create constructor matching super" "true"
public class Test<T> {
Test (T t) {}
}
class Derived extends Test<String> {
<caret>Derived(String s) {
super(s);
}
}