summary refs log tree commit diff
path: root/src/test/ui/attributes/const-stability-on-macro.rs
blob: 3fc60f7ce48c2154c686a218e960411ffded2267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[rustc_const_stable(feature = "foo", since = "0")]
//~^ ERROR macros cannot have const stability attributes
macro_rules! foo {
    () => {};
}

#[rustc_const_unstable(feature = "bar", issue="none")]
//~^ ERROR macros cannot have const stability attributes
macro_rules! bar {
    () => {};
}

fn main() {}