blob: 74de6aefd8a9e9083db3420caf8c7ff9ee5a7dca [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/general/bug32414a.dart:10:7: Error: A value of type 'int' can't be assigned to a variable of type 'String'.
// b = 42;
// ^
//
import self as self;
import "dart:core" as core;
static method test() void {
dynamic a = 5;
core::String b = a.{core::Object::toString}(){() core::String};
b = invalid-expression "pkg/front_end/testcases/general/bug32414a.dart:10:7: Error: A value of type 'int' can't be assigned to a variable of type 'String'.
b = 42;
^" in 42 as{TypeError,ForNonNullableByDefault} core::String;
}
static method main() void {}