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