rust/tests/ui/feature-gates/feature-gate-decl_macro.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
87 B
Rust
Raw Normal View History

2017-05-31 14:12:02 -05:00
#![allow(unused_macros)]
2019-04-10 18:40:12 -05:00
macro m() {} //~ ERROR `macro` is experimental
2017-03-24 21:37:55 -05:00
fn main() {}