blob: 4c11e13255d4e66728dbc00d9a18ce90d958a29a [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/regress/issue_36400.dart:6:3: Error: Factory constructors cannot have a return type.
// Try removing the type appearing before 'factory'.
// Test factory Test() {
// ^^^^
//
import self as self;
import "dart:core" as core;
class Test extends core::Object {
static factory •() self::Test {
throw "";
}
}