Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
attributes
/
crate-type-macro-empty.rs
blob: 217ff598f7a4c622ad86dc5a5fb5318fc8880ec7 [
file
]
// Tests for the issue in #137589
#[
crate_type
=
foo
!()]
//~^ ERROR cannot find macro `foo` in this scope
macro_rules
!
foo
{}
//~ ERROR macros must contain at least one rule
fn
main
()
{}