2019-07-02 16:30:28 -05:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2019-05-21 17:09:58 -05:00
|
|
|
// aux-build:test-macros.rs
|
2017-02-27 14:03:19 -06:00
|
|
|
|
|
|
|
#[macro_use]
|
2019-05-21 17:09:58 -05:00
|
|
|
extern crate test_macros;
|
2017-02-27 14:03:19 -06:00
|
|
|
|
|
|
|
fn main() {
|
2019-05-21 17:09:58 -05:00
|
|
|
identity!(println!("Hello, world!"));
|
2017-02-27 14:03:19 -06:00
|
|
|
}
|