blob: cc758d460ca0fcc7d591deacb7f6814b4acbcfe5 [file] [log] [blame]
// Copyright (c) 2011, 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 A list literal denotes a list, which is an integer indexed
/// collection of objects.
/// listLiteral:
/// const? typeArguments? '[' (expressionList ','?)? ']'
/// ;
/// @description Checks that a list literal can't contain an empty element.
/// @author msyabro
/// @reviewer kaigorodov
main() {
try {
[1, , 2, 3];
// ^
// [analyzer] unspecified
// [cfe] unspecified
} catch (e) {}
}