]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/lifetime-semicolon.rs
Merge commit 'c4416f20dcaec5d93077f72470e83e150fb923b1' into sync-rustfmt
[rust.git] / src / test / ui / parser / lifetime-semicolon.rs
index 744c93fc7c767cc73830d25244d02416f7960c00..21c8b0a7f88b3d49e12a1112bb9a644121798152 100644 (file)
@@ -5,6 +5,6 @@ struct Foo<'a, 'b> {
 }
 
 fn foo<'a, 'b>(_x: &mut Foo<'a; 'b>) {}
-//~^ ERROR expected one of `,`, `:`, `=`, or `>`, found `;`
+//~^ ERROR expected one of `,` or `>`, found `;`
 
 fn main() {}