mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
260 B
Rust
15 lines
260 B
Rust
// edition:2018
|
|
|
|
#![no_core]
|
|
#![feature(no_core)]
|
|
|
|
// @matchesraw 'issue_89852/sidebar-items.js' '"repro"'
|
|
// @!matchesraw 'issue_89852/sidebar-items.js' '"repro".*"repro"'
|
|
|
|
#[macro_export]
|
|
macro_rules! repro {
|
|
() => {};
|
|
}
|
|
|
|
pub use crate::repro as repro2;
|