]> git.lizzy.rs Git - rust.git/blob - src/test/ui/user-defined-macro-rules.rs
forward read_c_str method from Memory to Alloc
[rust.git] / src / test / ui / user-defined-macro-rules.rs
1 #![allow(unused_macros)]
2
3 macro_rules! macro_rules { () => {} } //~ ERROR user-defined macros may not be named `macro_rules`
4
5 fn main() {}