mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
23 lines
342 B
Rust
23 lines
342 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() { }
|