rust/crates/libsyntax2/tests/data/parser/inline/0086_array_expr.rs

7 lines
55 B
Rust
Raw Normal View History

2018-08-05 10:24:56 -05:00
fn foo() {
[];
[1];
[1, 2,];
[1; 2];
}