summary refs log tree commit diff
path: root/tests/ui/traits/impl-2.rs
blob: 41fa1cd334f40ef5754e0b4c5914f27ea73a0dd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//@ run-pass
#![allow(dead_code)]
#![allow(non_snake_case)]


pub mod Foo {
    pub trait Trait {
        fn foo(&self);
    }
}

mod Bar {
    impl<'a> dyn (crate::Foo::Trait) + 'a {
        fn bar(&self) { self.foo() }
    }
}

fn main() {}