]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-stability-rpass.rs
Auto merge of #83152 - guswynn:jemallocator_part2, r=Mark-Simulacrum
[rust.git] / src / test / ui / macros / macro-stability-rpass.rs
1 // run-pass
2 // aux-build:unstable-macros.rs
3
4 #![feature(unstable_macros, local_unstable)]
5
6 #[macro_use] extern crate unstable_macros;
7
8 #[unstable(feature = "local_unstable", issue = "none")]
9 macro_rules! local_unstable { () => () }
10
11 fn main() {
12     unstable_macro!();
13     local_unstable!();
14 }