summary refs log tree commit diff
path: root/src/test/run-pass/traits/trait-impl-2.rs
blob: b28d74a7b35b1ddd5763ea7f7f11172993d540d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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> ::Foo::Trait+'a {
        fn bar(&self) { self.foo() }
    }
}

fn main() {}