]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/lifetime-semicolon.rs
Auto merge of #57006 - GuillaumeGomez:no-crate-filter, r=QuietMisdreavus
[rust.git] / src / test / ui / parser / lifetime-semicolon.rs
1 // compile-flags: -Z parse-only
2
3 struct Foo<'a, 'b> {
4     a: &'a &'b i32
5 }
6
7 fn foo<'a, 'b>(x: &mut Foo<'a; 'b>) {}
8 //~^ ERROR expected one of `,` or `>`, found `;`