rust/src/test/ui/stability-attribute/stability-attribute-sanity-3.rs

13 lines
269 B
Rust
Raw Normal View History

// More checks that stability attributes are used correctly
#![feature(staged_api)]
2018-07-23 12:22:23 +01:00
#![stable(feature = "stable_test_feature", since = "1.0.0")]
#[macro_export]
macro_rules! mac { //~ ERROR This node does not have a stability attribute
() => ()
}
fn main() { }