rust/src/test/compile-fail/index_message.rs

5 lines
96 B
Rust
Raw Normal View History

fn main() {
let z = ();
log(error, z[0]); //! ERROR cannot index a value of type `()`
}