summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-14303-fn-def.rs
blob: 221bd311e7479ce34ad3ccdf3303c07b2934a769 (plain)
1
2
3
4
fn foo<'a, T, 'b>(x: &'a T) {}
//~^ ERROR lifetime parameters must be declared prior to type parameters

fn main() {}