Files
rust/tests/ui/resolve/nonexistent-macro.rs

7 lines
180 B
Rust
Raw Permalink Normal View History

2025-06-09 01:39:32 +05:00
//! Test error handling for undefined macro calls
fn main() {
iamnotanextensionthatexists!("");
//~^ ERROR cannot find macro `iamnotanextensionthatexists` in this scope
}