rust/src/test/compile-fail/empty-vec-trailing-comma.rs
2012-06-12 13:03:30 -07:00

3 lines
63 B
Rust

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