Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
proc-macro
/
macro-use-attr.rs
blob: b101c09ed542438cfc01bcdc4caf1556a40e5b75 [
file
] [
log
] [
blame
]
// build-pass (FIXME(62277): could be check-pass?)
// aux-build:test-macros.rs
#[
macro_use
]
extern
crate test_macros
;
#[
identity_attr
]
struct
Foo
;
fn
main
()
{
let
_
=
Foo
;
}