Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
traits
/
impl-2.rs
blob: 6cc702800e3926df1982a6e9becd188bae51951c [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}