blob: eddccc0015c75628082a2f9974d5ea8fb2c46e09 [file]
//@ revisions: bpass1 bpass2 bpass3
//@ ignore-backends: gcc
// FIXME(#62277): could be check-pass?
// This test case makes sure that we can compile with incremental compilation
// enabled when there are macros exported from this crate. (See #37756)
#![crate_type="rlib"]
#[macro_export]
macro_rules! some_macro {
($e:expr) => ($e + 1)
}