blob: a14352061d7727e3d6de2acb324bcdc10efa3fb0 [file] [log] [blame]
// Copyright (c) 2019, 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
/// @assertion To infer the type of element:
///
/// If element is an expressionElement with expression e1:
/// ...
/// If P is Set<Ps> then the inferred set element type of element is the inferred
/// type of the expression e1 in context Ps.
///
/// @description Checks that if P is Set<Ps> then the inferred set element type
/// of element is the inferred type of the expression e1 in context Ps.
/// @author sgrekhov@unipro.ru
main() {
Set<double> x = {1 + 1};
// ^
// [analyzer] unspecified
// [cfe] unspecified
}