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