rust/tests/ui/fmt/issue-86085.rs

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

7 lines
188 B
Rust
Raw Normal View History

2021-06-07 15:42:42 +00:00
// Tests for an ICE with the fuzzed input below.
fn main ( ) {
format ! ( concat ! ( r#"lJ𐏿Æ<F0908FBF>.𐏿<>"# , "r} {}" ) ) ;
//~^ ERROR: invalid format string: unmatched `}` found
}