blob: 7e0d3c642f2d3ab86b04d4ae079f6ec82a93cd32 [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.
/// @assertion Evaluation of an assignment a of the form v = e proceeds as
/// follows:
/// ...
/// It is a static type warning if the static type of e may not be assigned to
/// the static type of v. The static type of the expression v = e is the static
/// type of e.
/// @description Check that The static type of the expression v = e is the static
/// type of e
/// @author sgrekhov@unipro.ru
main() {
dynamic v;
double e = 3.14;
int x = v = e;
// ^
// [analyzer] unspecified
// [cfe] unspecified
}