]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/lifetime-semicolon.rs
Change syntax for TyAlias where clauses
[rust.git] / src / test / ui / parser / lifetime-semicolon.rs
1 struct Foo<'a, 'b> {
2     a: &'a &'b i32
3 }
4
5 fn foo<'a, 'b>(x: &mut Foo<'a; 'b>) {}
6 //~^ ERROR expected one of `,`, `:`, `=`, or `>`, found `;`
7
8 fn main() {}