blob: b471aa655e9c649c02efca794c740e3ed0bff7b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// run-pass
// aux-build:unstable-macros.rs
#![feature(unstable_macros)]
#[macro_use] extern crate unstable_macros;
#[unstable(feature = "local_unstable", issue = "0")]
macro_rules! local_unstable { () => () }
fn main() {
unstable_macro!();
local_unstable!();
}
|