blob: a0e96c0560f84beac1f8818ee37fbb8abd36c40f [file] [log] [blame]
library;
//
// 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 {
invalid-expression "The class 'C' is abstract and can't be instantiated.";
}