1 2 3 4 5 6 7 8 9
#![feature(decl_macro)] mod m { macro mac() {} } fn main() { m::mac!(); //~ ERROR macro `mac` is private }