]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/lifetime-semicolon.rs
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[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() {}