diff options
| author | bors <bors@rust-lang.org> | 2023-05-02 06:36:44 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-05-02 06:36:44 +0000 |
| commit | 7b99493492ad59c7a44c65373558175db42b4151 (patch) | |
| tree | 3175b32e64b2e498d623f3830be4faabd89ad892 /tests/ui/fmt/format-string-error.rs | |
| parent | 5133e154590991203c84702ef59482f729b19bbf (diff) | |
| parent | 2e3373c231fdd7ce607acd2339bfee501322e8c6 (diff) | |
| download | rust-7b99493492ad59c7a44c65373558175db42b4151.tar.gz rust-7b99493492ad59c7a44c65373558175db42b4151.zip | |
Auto merge of #111089 - Dylan-DPC:rollup-b8oj6du, r=Dylan-DPC
Rollup of 7 pull requests Successful merges: - #105076 (Refactor core::char::EscapeDefault and co. structures) - #108161 (Add `ConstParamTy` trait) - #108668 (Stabilize debugger_visualizer) - #110512 (Fix elaboration with associated type bounds) - #110895 (Remove `all` in target_thread_local cfg) - #110955 (uplift `clippy::clone_double_ref` as `suspicious_double_ref_op`) - #111048 (Mark`feature(return_position_impl_trait_in_trait)` and`feature(async_fn_in_trait)` as not incomplete) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'tests/ui/fmt/format-string-error.rs')
| -rw-r--r-- | tests/ui/fmt/format-string-error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/fmt/format-string-error.rs b/tests/ui/fmt/format-string-error.rs index eae4f3cb547..9b436e2c479 100644 --- a/tests/ui/fmt/format-string-error.rs +++ b/tests/ui/fmt/format-string-error.rs @@ -17,7 +17,7 @@ fn main() { let _ = format!("}"); //~^ ERROR invalid format string: unmatched `}` found let _ = format!("{\\}"); - //~^ ERROR invalid format string: expected `'}'`, found `'\\'` + //~^ ERROR invalid format string: expected `'}'`, found `'\'` let _ = format!("\n\n\n{\n\n\n"); //~^ ERROR invalid format string let _ = format!(r###" |
