blob: f288f841852b320c3b7166645aab8ef711ea8f05 [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/rasta/abstract_constructor.dart:8:7: Error: The class 'C' is abstract and can't be instantiated.
// new C();
// ^
// Unhandled errors:
//
// pkg/front_end/testcases/rasta/abstract_constructor.dart:8:7: Error: The class 'C' is abstract and can't be instantiated.
// new C();
// ^
library;
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");
}