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 19:12:02 +00:00
#![allow(unused_macros)]
2019-04-10 23:40:12 +00:00
macro m() {} //~ ERROR `macro` is experimental
2017-03-25 02:37:55 +00:00
fn main() {}