mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 22:10:08 +00:00
10 lines
139 B
Rust
10 lines
139 B
Rust
// check-pass
|
|
// aux-build:test-macros.rs
|
|
|
|
#[macro_use]
|
|
extern crate test_macros;
|
|
|
|
fn main() {
|
|
identity!(println!("Hello, world!"));
|
|
}
|