mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 11:51:07 +00:00
20 lines
271 B
Rust
20 lines
271 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_snake_case)]
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
pub mod Foo {
|
|
pub trait Trait {
|
|
fn foo(&self);
|
|
}
|
|
}
|
|
|
|
mod Bar {
|
|
impl<'a> dyn (::Foo::Trait) + 'a {
|
|
fn bar(&self) { self.foo() }
|
|
}
|
|
}
|
|
|
|
fn main() {}
|