blob: 401f81f0cb71ebb68b7d96ed24c72385c706c675 [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 From the Unified collections Spec:
* We require that at least one component unambiguously determine the literal
* form, otherwise it is a compile-time error. So, given:
* dynamic x = <int, int>{};
* Iterable l = [];
* Map m = {};
* Then:
* {...x} // Static error, because it is ambiguous.
* {...x, ...l} // Statically a set, runtime error when spreading x.
* {...x, ...m} // Statically a map, no runtime error.
* {...l, ...m} // Static error, because it must be both a set and a map.
* @description Checks that for dynamic x {...?x} is a static error
* @author iarkh@unipro.ru
*/
main() {
dynamic x1 = <int, int>{};
dynamic x2 = <int>{};
dynamic x3 = [1, 2, 3];
dynamic x4 = 14;
var y1 = {...?x1};
// ^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.AMBIGUOUS_SET_OR_MAP_LITERAL_EITHER
// [cfe] Not enough type information to disambiguate between literal set and literal map.
var y2 = {...?x2};
// ^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.AMBIGUOUS_SET_OR_MAP_LITERAL_EITHER
// [cfe] Not enough type information to disambiguate between literal set and literal map.
var y3 = {...?x3};
// ^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.AMBIGUOUS_SET_OR_MAP_LITERAL_EITHER
// [cfe] Not enough type information to disambiguate between literal set and literal map.
var y4 = {...?x4};
// ^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.AMBIGUOUS_SET_OR_MAP_LITERAL_EITHER
// [cfe] Not enough type information to disambiguate between literal set and literal map.
}