about summary refs log tree commit diff
path: root/src/test/ui/hygiene/intercrate.rs
blob: 2acbc893cf5fa63a7fd7032c4ca34845cf0c063e (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 {intercrate::foo::bar::f}` is private
}