mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
f784fa7bd9
Done by removing all uses of `#![no_core]`, and the reverting the ones that failed. More involved ones are in a later commit.
14 lines
320 B
Rust
14 lines
320 B
Rust
// edition:2018
|
|
|
|
// @set repro_id = "$.index[*][?(@.name=='repro')].id"
|
|
#[macro_export]
|
|
macro_rules! repro {
|
|
() => {};
|
|
}
|
|
|
|
// @set repro2_id = "$.index[*][?(@.docs=='Re-export')].id"
|
|
/// Re-export
|
|
pub use crate::repro as repro2;
|
|
|
|
// @ismany "$.index[*][?(@.name=='macro')].inner.module.items[*]" $repro_id $repro2_id
|