mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
13 lines
259 B
Rust
13 lines
259 B
Rust
//@ proc-macro: test-macros.rs
|
|
|
|
#![dummy] //~ ERROR cannot find attribute `dummy` in this scope
|
|
|
|
#[macro_use]
|
|
extern crate test_macros;
|
|
|
|
#[derive(Empty)]
|
|
#[empty_helper] //~ ERROR cannot find attribute `empty_helper` in this scope
|
|
struct Foo {}
|
|
|
|
fn main() {}
|