6 lines
121 B
Rust
6 lines
121 B
Rust
|
fn main(s: [str]) {
|
||
|
let a: [int] = [];
|
||
|
vec::each(a) { |x| //! ERROR not all control paths return a value
|
||
|
}
|
||
|
}
|