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

7 lines
55 B
Rust
Raw Normal View History

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