mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-04 04:15:38 +00:00
11 lines
158 B
Rust
11 lines
158 B
Rust
macro_rules! f {
|
|
($abi:literal) => {
|
|
extern $abi fn f() {}
|
|
}
|
|
}
|
|
|
|
f!("Foo"__);
|
|
//~^ ERROR suffixes on string literals are invalid
|
|
|
|
fn main() {}
|