summaryrefslogtreecommitdiffstats
path: root/src/test/pretty/issue-85089.pp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/pretty/issue-85089.pp')
-rw-r--r--src/test/pretty/issue-85089.pp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/pretty/issue-85089.pp b/src/test/pretty/issue-85089.pp
deleted file mode 100644
index f84e9df04..000000000
--- a/src/test/pretty/issue-85089.pp
+++ /dev/null
@@ -1,20 +0,0 @@
-#[prelude_import]
-use ::std::prelude::rust_2015::*;
-#[macro_use]
-extern crate std;
-// Test to print lifetimes on HIR pretty-printing.
-
-// pretty-compare-only
-// pretty-mode:hir
-// pp-exact:issue-85089.pp
-
-trait A<'x> { }
-trait B<'x> { }
-
-struct Foo<'b> {
- bar: &'b dyn for<'a> A<'a>,
-}
-
-impl <'a> B<'a> for dyn for<'b> A<'b> { }
-
-impl <'a> A<'a> for Foo<'a> { }