Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
attributes
/
crate-type-macro-call.rs
blob: 9ba5e79ba947ae44a0d404eadb2607db5d5b45d2 [
file
] [
log
] [
blame
]
#![
crate_type
=
foo
!()]
//~ ERROR malformed `crate_type` attribute
macro_rules
!
foo
{
()
=>
{
"rlib"
};
}
fn
main
()
{}