2017-05-24 21:04:03 -05:00
|
|
|
// ignore-pretty pretty-printing is unhygienic
|
|
|
|
|
2017-03-24 21:37:55 -05:00
|
|
|
// aux-build:intercrate.rs
|
|
|
|
|
2018-04-27 23:32:00 -05:00
|
|
|
#![feature(decl_macro)]
|
2017-03-24 21:37:55 -05:00
|
|
|
|
|
|
|
extern crate intercrate;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert_eq!(intercrate::foo::m!(), 1);
|
2020-09-02 02:40:56 -05:00
|
|
|
//~^ ERROR type `fn() -> u32 {foo::bar::f}` is private
|
2017-03-24 21:37:55 -05:00
|
|
|
}
|