mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
20 lines
269 B
Rust
20 lines
269 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() {}
|