blob: 005d8055026a4a18f5b5aa3068106fe47011b2ac [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.
*/
/**
* @assertion A list literal denotes a list, which is an integer indexed
* collection of objects.
* listLiteral:
* const? typeArguments? '[' (expressionList ','?)? ']'
* ;
* @description Checks that it is a compile-time error if a list literal does
* not end with ']'.
* @author msyabro
* @compile-error
* @reviewer kaigorodov
*/
main() {
try {
[1, 2, 3;
} catch (e) {}
}