blob: 799017058dd41658005166afd8730c47e73b21ec [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/super_parameters/opt_out.dart:14:5: Error: This requires the 'super-parameters' language feature to be enabled.
// Try updating your pubspec.yaml to set the minimum SDK constraint to 2.17 or higher, and running 'pub get'.
// B(super.field);
// ^^^^^
//
import self as self;
import "dart:core" as core;
class A extends core::Object {
field core::int field;
constructor •(core::int field) self::A
;
}
class B extends self::A {
constructor •(core::int field) self::B
;
}
static method main() dynamic
;