rust/src/test/compile-fail/empty-vec-trailing-comma.rs

4 lines
65 B
Rust
Raw Normal View History

fn main() {
let v = [,]/~; //! ERROR unexpected token: ','
}