blob: e7a76c74a496977b576288af5a5b8ff6a0b42776 [file] [log] [blame]
library test /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/inference/infer_type_on_overridden_fields4.dart:17:68: Error: A value of type 'int' can't be assigned to a variable of type 'String'.
// String y = /*error:INVALID_ASSIGNMENT*/ new B(). /*@target=B.x*/ x;
// ^
//
import self as self;
import "dart:core" as core;
class A extends core::Object {
final field core::int x = 2;
synthetic constructor •() self::A
: super core::Object::•()
;
}
class B extends core::Object implements self::A {
synthetic constructor •() self::B
: super core::Object::•()
;
get x() core::int
return 3;
}
static method foo() dynamic {
core::String y = invalid-expression "pkg/front_end/testcases/inference/infer_type_on_overridden_fields4.dart:17:68: Error: A value of type 'int' can't be assigned to a variable of type 'String'.
String y = /*error:INVALID_ASSIGNMENT*/ new B(). /*@target=B.x*/ x;
^" in new self::B::•().{self::B::x}{core::int} as{TypeError,ForNonNullableByDefault} core::String;
core::int z = new self::B::•().{self::B::x}{core::int};
}
static method main() dynamic {}