Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
proc-macro
/
export-macro.rs
blob: 33bf8cfb2552f315cef7294e3929c87603db750c [
file
] [
log
] [
blame
]
//@ 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
)
}