summaryrefslogtreecommitdiffstats
path: root/tests/ui/hygiene/intercrate.rs
blob: d9b5b789e4ab58848f04d1b6157a21878bcae8ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// ignore-pretty pretty-printing is unhygienic

// aux-build:intercrate.rs

#![feature(decl_macro)]

extern crate intercrate;

fn main() {
    assert_eq!(intercrate::foo::m!(), 1);
    //~^ ERROR type `fn() -> u32 {foo::bar::f}` is private
}