mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 02:57:37 +00:00
10 lines
203 B
Rust
10 lines
203 B
Rust
//@ force-host
|
|
//@ no-prefer-dynamic
|
|
|
|
#![crate_type = "proc-macro"]
|
|
|
|
#[macro_export]
|
|
macro_rules! foo { //~ ERROR cannot export macro_rules! macros from a `proc-macro` crate type
|
|
($e:expr) => ($e)
|
|
}
|