rust/src/test/ui/error-codes/E0263.rs
2018-12-25 21:08:33 -07:00

5 lines
82 B
Rust

fn foo<'a, 'b, 'a>(x: &'a str, y: &'b str) {
//~^ ERROR E0263
}
fn main() {}