rust/src/test/ui/index_message.rs

5 lines
97 B
Rust
Raw Normal View History

fn main() {
let z = ();
2017-06-09 12:05:14 -05:00
let _ = z[0]; //~ ERROR cannot index into a value of type `()`
}