summaryrefslogtreecommitdiffstats
path: root/src/test/ui/fmt/format-concat-span.rs
blob: ce92df0ad92bd7cf43cff7f154bf3c816702f858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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
}