blob: 4467958fef945cce11b75c3025146952a1b27ce7 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general_nnbd_opt_out/override_setter_with_field.dart:12:7: Error: The field 'B.x' has type 'int', which does not match the corresponding type, 'Object', in the overridden setter, 'A.x'.
// - 'Object' is from 'dart:core'.
// int x;
// ^
// pkg/front_end/testcases/general_nnbd_opt_out/override_setter_with_field.dart:8:12: Context: This is the overridden method ('x').
// void set x(Object y);
// ^
//
import self as self;
import "dart:core" as core;
abstract class A extends core::Object {
synthetic constructor •() self::A*
: super core::Object::•()
;
abstract set x(core::Object* y) void;
}
class B extends core::Object implements self::A {
field core::int* x = null;
synthetic constructor •() self::B*
: super core::Object::•()
;
}
static method main() dynamic {
new self::B::•().{self::B::x} = 5;
}