rust/tests/ui/error-codes/E0282.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
80 B
Rust
Raw Normal View History

2016-08-05 20:18:01 +00:00
fn main() {
let x = "hello".chars().rev().collect();
//~^ ERROR E0282
2016-08-05 20:18:01 +00:00
}