mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
232 B
Rust
15 lines
232 B
Rust
// Regression test for the issue #44692
|
|
|
|
macro_rules! hang { () => {
|
|
{ //~ ERROR format argument must be a string literal
|
|
#[derive(Clone)]
|
|
struct S;
|
|
|
|
""
|
|
}
|
|
}}
|
|
|
|
fn main() {
|
|
format_args!(hang!());
|
|
}
|