2020-11-14 14:47:14 +03:00
|
|
|
//@ check-pass
|
2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: test-macros.rs
|
2020-11-14 14:47:14 +03:00
|
|
|
|
|
|
|
|
#[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() {}
|