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

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

6 lines
82 B
Rust
Raw Normal View History

fn foo<'a, 'b, 'a>(x: &'a str, y: &'b str) {
//~^ ERROR E0403
}
2016-08-05 19:17:39 +08:00
fn main() {}