summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/lifetime-semicolon.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/lifetime-semicolon.fixed')
-rw-r--r--src/test/ui/parser/lifetime-semicolon.fixed10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/parser/lifetime-semicolon.fixed b/src/test/ui/parser/lifetime-semicolon.fixed
deleted file mode 100644
index 482b77046..000000000
--- a/src/test/ui/parser/lifetime-semicolon.fixed
+++ /dev/null
@@ -1,10 +0,0 @@
-// run-rustfix
-#![allow(unused)]
-struct Foo<'a, 'b> {
- a: &'a &'b i32
-}
-
-fn foo<'a, 'b>(_x: &mut Foo<'a, 'b>) {}
-//~^ ERROR expected one of `,` or `>`, found `;`
-
-fn main() {}