summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/export-macro.rs
blob: ad69fe5eed205ee6e309272a76073dd44e86f3dd (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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)
}