blob: 1981b9af039e90b94628c45fad4959f6baaa0f26 [file] [log] [blame]
import 'unresolved_constructor_invocation.dart' as resolved_prefix;
class Super {
Super.named();
}
class Class extends Super {
Class.constructor1() : super();
Class.constructor2() : super.unresolved();
Class.constructor3() : this();
Class.constructor4() : this.unresolved();
}
class ResolvedClass<T> {
ResolvedClass.named();
}
test() {}
main() {}