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

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 06:17:39 -05:00
fn main() {}