about summary refs log tree commit diff
path: root/tests/ui/traits/impl-2.rs
blob: eafbaeaa167b99e6b33e18a50a311cf475e827bd (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() {}