blob: 4a7e48eed46c3130e9e9f8ed470094e70fdc3dee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// 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() {}
|