Files
rust/tests/ui/proc-macro/derive-helper-legacy-spurious.rs

13 lines
257 B
Rust
Raw Normal View History

//@ aux-build: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;
#[derive(Empty)]
#[empty_helper] //~ ERROR cannot find attribute `empty_helper` in this scope
2021-02-23 00:07:36 +03:00
struct Foo {}
fn main() {}