mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 10:47:16 +00:00
7 lines
180 B
Rust
7 lines
180 B
Rust
//! Test error handling for undefined macro calls
|
|
|
|
fn main() {
|
|
iamnotanextensionthatexists!("");
|
|
//~^ ERROR cannot find macro `iamnotanextensionthatexists` in this scope
|
|
}
|