blob: 91e046a5df5ce156a0ab7f726d25e9449e769bca [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 a spreadElement with expression e1:
* ...
* If P is Set<Ps> then let S be the inferred type of e1 in context Iterable<Ps>:
* ...
* If S is dynamic, then the inferred set element type of element is dynamic.
*
* @description Checks that if S is dynamic, then the inferred set element type
* of element is dynamic.
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=constant-update-2018
import "../../Utils/expect.dart";
test(x) {
Set<int> s = {...x};
Expect.isTrue(s is Set<int>);
}
main() {
dynamic d = [1, 2, 3, 4];
test(d);
}