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