rust/tests/ui/hygiene/intercrate.rs
2023-04-03 09:24:11 +02:00

11 lines
194 B
Rust

// 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
}