mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
14 lines
166 B
Rust
14 lines
166 B
Rust
//@ check-pass
|
|
//@ proc-macro: test-macros.rs
|
|
|
|
extern crate test_macros;
|
|
|
|
mod inner {
|
|
use test_macros::Empty;
|
|
|
|
#[derive(Empty)]
|
|
struct S;
|
|
}
|
|
|
|
fn main() {}
|