2022-05-28 18:57:02 +09:00
|
|
|
//@ check-pass
|
2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: duplicate.rs
|
2018-11-30 22:34:24 +03:00
|
|
|
|
|
|
|
|
extern crate duplicate;
|
|
|
|
|
|
|
|
|
|
#[duplicate::duplicate]
|
|
|
|
|
use main as _; // OK
|
|
|
|
|
|
|
|
|
|
macro_rules! duplicate {
|
|
|
|
|
($item: item) => { $item $item }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
duplicate!(use std as _;); // OK
|
|
|
|
|
|
|
|
|
|
fn main() {}
|