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 22:18:01 +02:00
fn main() {
let x = "hello".chars().rev().collect();
//~^ ERROR E0282
2016-08-05 22:18:01 +02:00
}