Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
proc-macro
/
derive-still-gated.rs
blob: bce7badeffe1d12cfdc32d3751212577a04ac84e [
file
] [
log
] [
blame
] [
edit
]
//@ aux-build:test-macros.rs
#[
macro_use
]
extern
crate test_macros
;
#[
derive_Empty
]
//~ ERROR cannot find attribute `derive_Empty` in this scope
struct
A
;
fn
main
()
{}