Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
proc-macro
/
derive-in-mod.rs
blob: 3bd70f1090d03680027285b457e851fa4101bc0d [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ aux-build:test-macros.rs
extern
crate test_macros
;
mod
inner
{
use
test_macros
::
Empty
;
#[
derive
(
Empty
)]
struct
S
;
}
fn
main
()
{}