mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 12:12:23 +00:00
14 lines
162 B
Rust
14 lines
162 B
Rust
// check-pass
|
|
// aux-build:test-macros.rs
|
|
|
|
extern crate test_macros;
|
|
|
|
mod inner {
|
|
use test_macros::Empty;
|
|
|
|
#[derive(Empty)]
|
|
struct S;
|
|
}
|
|
|
|
fn main() {}
|