rust/tests/ui/regions/regions-debruijn-of-object.rs
2023-01-11 09:32:08 +00:00

23 lines
340 B
Rust

// run-pass
#![allow(dead_code)]
#![allow(unused_variables)]
#![allow(non_camel_case_types)]
// pretty-expanded FIXME #23616
struct ctxt<'tcx> {
x: &'tcx i32
}
trait AstConv<'tcx> {
fn tcx<'a>(&'a self) -> &'a ctxt<'tcx>;
}
fn foo(conv: &dyn AstConv) { }
fn bar<'tcx>(conv: &dyn AstConv<'tcx>) {
foo(conv)
}
fn main() { }