]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-stability-rpass.rs
Auto merge of #106975 - tmiasko:basic-blocks-cache, r=cjgillot
[rust.git] / tests / ui / macros / macro-stability-rpass.rs
1 // run-pass
2 // aux-build:unstable-macros.rs
3
4 #![unstable(feature = "one_two_three_testing", issue = "none")]
5 #![feature(staged_api, unstable_macros, local_unstable)]
6
7 #[macro_use] extern crate unstable_macros;
8
9 #[unstable(feature = "local_unstable", issue = "none")]
10 macro_rules! local_unstable { () => () }
11
12 fn main() {
13     unstable_macro!();
14     local_unstable!();
15 }