rust/tests/pretty/issue-85089.pp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
368 B
Puppet
Raw Normal View History

#[prelude_import]
use ::std::prelude::rust_2015::*;
#[macro_use]
extern crate std;
// Test to print lifetimes on HIR pretty-printing.
2024-02-21 20:37:58 +08:00
//@ 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> { }