blob: 9d30f48846dba096761ac28c9ddcdd7408fa8844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// build-pass (FIXME(62277): could be check-pass?)
// aux-build:test-macros.rs
#![feature(proc_macro_hygiene)]
#[macro_use]
extern crate test_macros;
fn main() {
identity!(println!("Hello, world!"));
}
|