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