blob: e4e38f1dc60930361e6274f50dc4f993d3ee74ef [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/rasta/abstract_constructor.dart:8:7: Error: The class 'C' is abstract and can't be instantiated.
// new C();
// ^
//
import self as self;
import "dart:core" as core;
abstract class C extends core::Object {
synthetic constructor •() self::C
: super core::Object::•()
;
}
static method main() dynamic {
throw new core::AbstractClassInstantiationError::•("C");
}