mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
242 B
Rust
13 lines
242 B
Rust
// 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
|
|
}
|