Sign in
rust
/
rust
/
c021d2ddd49f8ff07d27fa772d88a3eb229e63ec
/
.
/
tests
/
ui
/
resolve
/
nonexistent-macro.rs
blob: 663075473a1c8d35dac3b5e5fc14f6ef8604608a [
file
]
//! Test error handling for undefined macro calls
fn
main
()
{
iamnotanextensionthatexists
!(
""
);
//~^ ERROR cannot find macro `iamnotanextensionthatexists` in this scope
}