summaryrefslogtreecommitdiffstats
path: root/tests/ui/hygiene/trait_items-2.rs
blob: 39edfc37d69780e48821f0009d8c3ffc08cc0ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// check-pass
// ignore-pretty pretty-printing is unhygienic

#![feature(decl_macro)]

macro m($T:ident, $f:ident) {
    pub trait $T {
        fn f(&self) -> u32 { 0 }
        fn $f(&self) -> i32 { 0 }
    }
    impl $T for () {}

    let _: u32 = ().f();
    let _: i32 = ().$f();
}

fn main() {
    m!(T, f);
    let _: i32 = ().f();
}