blob: bd06b436183c6fb8f72379d4039425bc0eace152 [file] [log] [blame]
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS
// file for details. All rights reserved. Use of this source code is governed
// by a BSD-style license that can be found in the LICENSE file.
// @dart = 2.9
/// @author a.semenov@unipro.ru
import "dart:async";
import "IsolateUtil.dart";
main() {
dynamic i1 = 1, i2 = 2;
// second error
new Future.delayed(ONE_SECOND, () => "b" + i2 );
// first error
var x = "a" + i1;
}