blob: 9bed78ba4157fbe5189fa8c4cfcbbd6d7f17bc82 [file] [log] [blame]
library;
//
// Problems in library:
//
// 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;
// ^
//
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
;