about summary refs log tree commit diff
path: root/tests/ui/hygiene/issue-47311.rs
blob: e12b174f82fa2be1ec6a2061703414eacbed75c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ check-pass

#![feature(decl_macro)]
#![allow(unused)]

macro m($S:ident, $x:ident) {
    $S { $x: 0 }
}

mod foo {
    struct S { x: i32 }

    fn f() { ::m!(S, x); }
}

fn main() {}