blob: 4cc243ec9f0c45b02d2d7d451f0e4a189932e787 [file] [log] [blame] [edit]
//@ revisions: cfail1 cfail2 cfail3
//@ build-pass (FIXME(62277): could be check-pass?)
//@ ignore-backends: gcc
// 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)
}