mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 07:54:57 +00:00
10 lines
117 B
Rust
10 lines
117 B
Rust
macro_rules! failed {
|
|
() => {{
|
|
let x = 5 ""; //~ ERROR found `""`
|
|
}}
|
|
}
|
|
|
|
fn main() {
|
|
failed!();
|
|
}
|