blob: 0360cf466bbfd52a0fed54c7c7c702b453b59c20 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/regress/issue_35259.dart:7:11: Error: 'Supertype' is already declared in this scope.
// factory Supertype() = Unresolved;
// ^^^^^^^^^
// pkg/front_end/testcases/regress/issue_35259.dart:6:11: Context: Previous declaration of 'Supertype'.
// factory Supertype() = Unresolved;
// ^^^^^^^^^
//
// pkg/front_end/testcases/regress/issue_35259.dart:6:25: Warning: Couldn't find constructor 'Unresolved'.
// factory Supertype() = Unresolved;
// ^
//
// pkg/front_end/testcases/regress/issue_35259.dart:7:25: Warning: Couldn't find constructor 'Unresolved'.
// factory Supertype() = Unresolved;
// ^
//
// pkg/front_end/testcases/regress/issue_35259.dart:7:11: Warning: Redirection constructor target not found: 'Unresolved'
// factory Supertype() = Unresolved;
// ^
//
// pkg/front_end/testcases/regress/issue_35259.dart:6:11: Warning: Redirection constructor target not found: 'Unresolved'
// factory Supertype() = Unresolved;
// ^
//
// pkg/front_end/testcases/regress/issue_35259.dart:11:13: Error: Can't use 'Supertype' because it is declared more than once.
// print(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 = "Unresolved" in invalid-expression;
}
static method main() dynamic {
core::print(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>{}))));
}