2017-10-09 08:38:51 -05:00
|
|
|
//@ revisions: cfail1 cfail2 cfail3
|
2019-07-02 16:30:28 -05:00
|
|
|
//@ build-pass (FIXME(62277): could be check-pass?)
|
2016-11-15 15:16:40 -06:00
|
|
|
|
|
|
|
// 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)
|
|
|
|
}
|