blob: 25f0614142416d83f56c2adabc210f4cb79fd076 [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/regress/issue_35260.dart:7:11: Error: 'Supertype' is already declared in this scope.
// factory Supertype() = X;
// ^^^^^^^^^
// pkg/front_end/testcases/regress/issue_35260.dart:6:11: Context: Previous declaration of 'Supertype'.
// factory Supertype() = X;
// ^^^^^^^^^
//
// pkg/front_end/testcases/regress/issue_35260.dart:15:13: Error: Can't use 'Supertype' because it is declared more than once.
// X x = new Supertype();
// ^
// Unhandled errors:
//
// pkg/front_end/testcases/regress/issue_35260.dart:7:11: Error: 'Supertype' is already declared in this scope.
// factory Supertype() = X;
// ^^^^^^^^^
library;
import self as self;
import "dart:core" as core;
class Supertype extends core::Object {
static field dynamic _redirecting# = <dynamic>[self::Supertype::•];
static factory •() self::Supertype
let dynamic #redirecting_factory = self::X::• in invalid-expression;
}
class X extends core::Object implements self::Supertype {
constructor •() self::X
: super core::Object::•()
;
}
static method main() dynamic {
self::X x = invalid-expression "pkg/front_end/testcases/regress/issue_35260.dart:15:13: Error: Can't use 'Supertype' because it is declared more than once.
X x = new Supertype();
^" as{TypeError} self::X;
}