Update 7.2.9 Array expressions

This commit is contained in:
Armin Preiml 2015-01-10 19:08:07 +01:00 committed by Manish Goregaokar
parent f754715298
commit 25abb2ad4d
1 changed files with 2 additions and 2 deletions

View File

@ -2921,13 +2921,13 @@ automatically dereferenced to make the field access possible.
```{.ebnf .gram}
array_expr : '[' "mut" ? vec_elems? ']' ;
array_elems : [expr [',' expr]*] | [expr ',' ".." expr] ;
array_elems : [expr [',' expr]*] | [expr ';' expr] ;
```
An [array](#array,-and-slice-types) _expression_ is written by enclosing zero
or more comma-separated expressions of uniform type in square brackets.
In the `[expr ',' ".." expr]` form, the expression after the `".."` must be a
In the `[expr ';' expr]` form, the expression after the `';'` must be a
constant expression that can be evaluated at compile time, such as a
[literal](#literals) or a [static item](#static-items).