blob: ca1dccd2b5650146ef40e829010e0c7d02498213 [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/rasta/bad_redirection.dart:6:9: Error: Only factory constructor can specify '=' redirection.
// Try making this a factory constructor, or remove the redirection.
// Foo() = Bar;
// ^
library;
import self as self;
import "dart:core" as core;
class Foo extends core::Object {
constructor •() void
;
}
class Bar extends self::Foo {
static factory •() self::Bar
;
}
static method main() dynamic
;