blob: 85f5296aa21e0e381a0d572aaf695d3b7b665a55 [file] [log] [blame]
// Unhandled errors:
//
// pkg/front_end/testcases/regress/issue_34614.dart:5:14: Error: Expected an identifier, but got '}'.
// class C { C. }
// ^
//
// pkg/front_end/testcases/regress/issue_34614.dart:5:11: Error: A method declaration needs an explicit list of parameters.
// Try adding a parameter list to the method declaration.
// class C { C. }
// ^
//
// pkg/front_end/testcases/regress/issue_34614.dart:5:14: Error: Expected '{' before this.
// class C { C. }
// ^
library;
import self as self;
import "dart:core" as core;
class C extends core::Object {
synthetic constructor •() self::C
: super core::Object::•()
;
}
static method main() dynamic {
dynamic c = new self::C::•();
c.toString();
}