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