blob: e911e9b0286659706b1f26dae0b56c19c9cbdf61 [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 It is a static error if:
/// A spread element in a list or set literal has a static type that is not
/// assignable to Iterable<Object>.
/// @description Checks that compile error is thrown if spread element in set
/// literal is not assignable to [Iterate<Object>]
/// @author iarkh@unipro.ru
main() {
var number = 1;
var str = "checkme";
var map = {1: 1, 2: 2};
var list = [1, 2, 3, 4, 5];
Set l1 = <dynamic>{...number}; //# 01: compile-time error
Set l2 = <dynamic>{...str}; //# 02: compile-time error
Set l3 = <dynamic>{...map}; //# 03: compile-time error
Set l4 = <dynamic>{...list[0]}; //# 04: compile-time error
Set l5 = <dynamic>{...?number}; //# 05: compile-time error
Set l6 = <dynamic>{...?str}; //# 06: compile-time error
Set l7 = <dynamic>{...?map}; //# 07: compile-time error
Set l8 = <dynamic>{...?list[0]}; //# 08: compile-time error
}