blob: 381ea3c4b50d4f2da57cad29375b89148e2d57ae [file] [log] [blame]
library;
//
// Problems in library:
//
// 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();
// ^
//
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 = throw new core::NoSuchMethodError::withInvocation(null, new core::_InvocationMirror::_withType(#Supertype, 32, const <core::Type>[], const <dynamic>[], core::Map::unmodifiable<core::Symbol, dynamic>(const <core::Symbol, dynamic>{})));
}