12 lines
208 B
Rust
12 lines
208 B
Rust
//@ error-pattern: cannot export macro_rules! macros from a `proc-macro` crate
|
|
|
|
//@ force-host
|
|
//@ no-prefer-dynamic
|
|
|
|
#![crate_type = "proc-macro"]
|
|
|
|
#[macro_export]
|
|
macro_rules! foo {
|
|
($e:expr) => ($e)
|
|
}
|