mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 10:19:00 +00:00
13 lines
220 B
Rust
13 lines
220 B
Rust
//@ check-pass
|
|
//@ proc-macro: test-macros.rs
|
|
|
|
#[macro_use]
|
|
extern crate test_macros;
|
|
|
|
#[derive(Empty)]
|
|
#[empty_helper] // OK, this is both derive helper and legacy derive helper
|
|
#[derive(Empty)]
|
|
struct S;
|
|
|
|
fn main() {}
|