blob: 06f511e0829b9bcb9e0a91167d8b8bf1044a0fc2 [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 •() self::Foo
;
}
class Bar extends self::Foo {
static factory •() self::Bar
;
}
static method main() dynamic
;