blob: 31a571d32d30e6934f6ea7d9e15eb2f8a8963d96 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/extension_type_when_experiment_not_enabled.dart:11:6: Error: 'E' isn't a type.
// test(E e) {} // Error.
// ^
//
import self as self;
import "dart:core" as core;
class A extends core::Object {
synthetic constructor •() self::A
: super core::Object::•()
;
}
extension E on self::A {
}
static method test(invalid-type e) dynamic {}
static method main() dynamic {}