mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
365 B
ObjectPascal
21 lines
365 B
ObjectPascal
#[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> { }
|