blob: 05494b4326daa3924e6583434fb3ee0f46e6fb5b [file] [log] [blame] [edit]
// 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.
/// @assertion A list literal denotes a list, which is an integer indexed
/// collection of objects.
/// listLiteral:
/// const? typeArguments? '[' (expressionList ','?)? ']'
/// ;
/// @description Checks that its a compile-time error if elements in a list are
/// not separated by comma.
/// @author msyabro
main() {
[1 2 3];
// ^
// [analyzer] unspecified
// [cfe] unspecified
}