mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
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)
|
|
}
|