rust/tests/ui/resolve/nonexistent-macro.rs
2025-06-11 17:49:03 +05:00

7 lines
180 B
Rust

//! Test error handling for undefined macro calls
fn main() {
iamnotanextensionthatexists!("");
//~^ ERROR cannot find macro `iamnotanextensionthatexists` in this scope
}