summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0263.rs
blob: 92917678e4c02697ac5990a9174838d28f0091b2 (plain)
1
2
3
4
5
fn foo<'a, 'b, 'a>(x: &'a str, y: &'b str) {
    //~^ ERROR E0403
}

fn main() {}