mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
0ea8958c02
This is the subset of incremental tests that have a FIXME to consider migrating to check-pass instead. That migration is beyond the scope of this PR, but might be attempted later.
14 lines
345 B
Rust
14 lines
345 B
Rust
//@ 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)
|
|
}
|