blob: a196b35991e79321017bbb85fe4447f81640ca51 [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/value_class/value_extends_non_value.dart:8:13: Error: Final field 'numLegs' is not initialized.
// Try to initialize the field in the declaration or in every constructor.
// final int numLegs;
// ^^^^^^^
//
import self as self;
import "dart:core" as core;
class Animal extends core::Object {
final field core::int numLegs = null;
synthetic constructor •() self::Animal
: super core::Object::•()
;
}
@#C1
class Cat extends self::Animal {
synthetic constructor •() self::Cat
: super self::Animal::•()
;
}
static const field core::String valueClass = #C1;
static method main() dynamic {}
constants {
#C1 = "valueClass"
}