diff options
| author | bors <bors@rust-lang.org> | 2022-07-22 07:12:19 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-07-22 07:12:19 +0000 |
| commit | e7a9c1141698bc4557b9da3d3fce2bf75339427f (patch) | |
| tree | f33a2c0b026c5ef7ac34d14e3453d729ea3dfbf3 /src/test/ui/array-slice-vec | |
| parent | aa0189170057a6b56f445f05b9840caf6f260212 (diff) | |
| parent | 5df3b983218e136e995df5a7210535bddbdfca52 (diff) | |
| download | rust-e7a9c1141698bc4557b9da3d3fce2bf75339427f.tar.gz rust-e7a9c1141698bc4557b9da3d3fce2bf75339427f.zip | |
Auto merge of #99592 - Dylan-DPC:rollup-xlw4wax, r=Dylan-DPC
Rollup of 6 pull requests
Successful merges:
- #98174 (Rename `<*{mut,const} T>::as_{const,mut}` to `cast_`)
- #98868 (Fix unreachable coverage generation for inlined functions)
- #99393 (feat: omit suffixes in const generics (e.g. `1_i32`))
- #99423 (Group CSS font rule)
- #99539 (Improve suggestions for returning binding)
- #99579 (Add same warning to Result::expect as Result::unwrap)
Failed merges:
r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'src/test/ui/array-slice-vec')
| -rw-r--r-- | src/test/ui/array-slice-vec/match_arr_unknown_len.stderr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/array-slice-vec/match_arr_unknown_len.stderr b/src/test/ui/array-slice-vec/match_arr_unknown_len.stderr index 1a14ab40b1f..5e531a993c6 100644 --- a/src/test/ui/array-slice-vec/match_arr_unknown_len.stderr +++ b/src/test/ui/array-slice-vec/match_arr_unknown_len.stderr @@ -2,7 +2,7 @@ error[E0308]: mismatched types --> $DIR/match_arr_unknown_len.rs:3:9 | LL | [1, 2] => true, - | ^^^^^^ expected `2_usize`, found `N` + | ^^^^^^ expected `2`, found `N` | = note: expected array `[u32; 2]` found array `[u32; N]` |
