blob: 71d0fd7cfdc20b0ef5645c8f1f693af04c34ad48 [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.
*/
/**
* @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.
* @compile-error
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=constant-update-2018
main() {
Set<double> x = {1 + 1};
}