mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-10 17:07:36 +00:00
13 lines
216 B
Rust
13 lines
216 B
Rust
![]() |
// check-pass
|
||
|
// aux-build: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() {}
|