mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
340 B
Rust
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() { }
|