blob: eb2c4e2aae72ebae619e6e930a0767744210f527 [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/inference_new/invalid_assignment_during_toplevel_inference.dart:9:62: Error: A value of type 'dart.core::String' can't be assigned to a variable of type 'dart.core::int'.
// Try changing the type of the left hand side, or casting the right hand side to 'dart.core::int'.
// var /*@topType=String*/ x = i = /*@error=InvalidAssignment*/ s;
// ^
library;
import self as self;
import "dart:core" as core;
static field core::int i;
static field core::String s;
static field core::String x = self::i = let dynamic _ = null in let final dynamic #t1 = let dynamic _ = null in invalid-expression "pkg/front_end/testcases/inference_new/invalid_assignment_during_toplevel_inference.dart:9:62: Error: A value of type 'dart.core::String' can't be assigned to a variable of type 'dart.core::int'.
Try changing the type of the left hand side, or casting the right hand side to 'dart.core::int'.
var /*@topType=String*/ x = i = /*@error=InvalidAssignment*/ s;
^" in let final dynamic #t2 = self::s in null;
static method main() → dynamic {}