blob: e9b3d80c92ee844c0bd8748546f94af1cc89e1ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//@ 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;
|