2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: test-macros.rs
|
2021-02-23 00:07:36 +03:00
|
|
|
|
|
|
|
|
#![dummy] //~ ERROR cannot find attribute `dummy` in this scope
|
|
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate test_macros;
|
|
|
|
|
|
2024-01-27 19:09:55 +08:00
|
|
|
#[derive(Empty)]
|
2025-08-11 22:33:12 +02:00
|
|
|
#[empty_helper]
|
2021-02-23 00:07:36 +03:00
|
|
|
struct Foo {}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|