rust/tests/ui/fmt/format-expanded-string.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
660 B
Rust
Raw Normal View History

//@ aux-build:format-string-proc-macro.rs
#[macro_use]
extern crate format_string_proc_macro;
2021-06-07 15:42:42 +00:00
// If the format string is another macro invocation, rustc would previously
// compute nonsensical spans, such as:
//
// error: invalid format string: unmatched `}` found
// --> test.rs:2:17
// |
// 2 | format!(concat!("abc}"));
// | ^ unmatched `}` in format string
//
// This test checks that this behavior has been fixed.
fn main() {
format!(concat!("abc}"));
//~^ ERROR: invalid format string: unmatched `}` found
format!(err_with_input_span!(""));
//~^ ERROR: invalid format string: unmatched `}` found
2021-06-07 15:42:42 +00:00
}