6 lines
101 B
Rust
6 lines
101 B
Rust
fn main() {
|
|
let x = "hello".chars().rev().collect();
|
|
//~^ ERROR E0282
|
|
//~| ERROR E0283
|
|
}
|