mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
327 B
Rust
13 lines
327 B
Rust
// aux-build:test-macros.rs
|
|
|
|
#![dummy] //~ ERROR cannot find attribute `dummy` in this scope
|
|
|
|
#[macro_use]
|
|
extern crate test_macros;
|
|
|
|
#[derive(Empty)] //~ ERROR cannot determine resolution for the attribute macro `derive`
|
|
#[empty_helper] //~ ERROR cannot find attribute `empty_helper` in this scope
|
|
struct Foo {}
|
|
|
|
fn main() {}
|