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