2018-08-18 02:04:50 +03:00
|
|
|
// compile-pass
|
2019-05-22 01:09:58 +03:00
|
|
|
// aux-build:test-macros.rs
|
2017-02-27 12:03:19 -08:00
|
|
|
|
2018-07-05 19:09:35 -06:00
|
|
|
#![feature(proc_macro_hygiene)]
|
2017-02-27 12:03:19 -08:00
|
|
|
|
|
|
|
|
#[macro_use]
|
2019-05-22 01:09:58 +03:00
|
|
|
extern crate test_macros;
|
2017-02-27 12:03:19 -08:00
|
|
|
|
|
|
|
|
fn main() {
|
2019-05-22 01:09:58 +03:00
|
|
|
identity!(println!("Hello, world!"));
|
2017-02-27 12:03:19 -08:00
|
|
|
}
|