Skip to content

Commit 1fc46f3

Browse files
committedJan 26, 2024
Auto merge of rust-lang#120365 - matthiaskrgr:rollup-ly2w0d5, r=matthiaskrgr
Rollup of 8 pull requests Successful merges: - rust-lang#107464 (Add `str::Lines::remainder`) - rust-lang#118803 (Add the `min_exhaustive_patterns` feature gate) - rust-lang#119466 (Initial implementation of `str::from_raw_parts[_mut]`) - rust-lang#120053 (Specialize `Bytes` on `StdinLock<'_>`) - rust-lang#120124 (Split assembly tests for ELF and MachO) - rust-lang#120204 (Builtin macros effectively have implicit #[collapse_debuginfo(yes)]) - rust-lang#120322 (Don't manually resolve async closures in `rustc_resolve`) - rust-lang#120356 (Fix broken markdown in csky-unknown-linux-gnuabiv2.md) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 69db514 + ee2a2a3 commit 1fc46f3

File tree

21 files changed

+999
-245
lines changed

21 files changed

+999
-245
lines changed
 

‎compiler/rustc_expand/src/base.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -796,9 +796,15 @@ impl SyntaxExtension {
796796
/// | external | no | if-ext | if-ext | yes |
797797
/// | yes | yes | yes | yes | yes |
798798
fn get_collapse_debuginfo(sess: &Session, attrs: &[ast::Attribute], is_local: bool) -> bool {
799-
let collapse_debuginfo_attr = attr::find_by_name(attrs, sym::collapse_debuginfo)
799+
let mut collapse_debuginfo_attr = attr::find_by_name(attrs, sym::collapse_debuginfo)
800800
.map(|v| Self::collapse_debuginfo_by_name(sess, v))
801801
.unwrap_or(CollapseMacroDebuginfo::Unspecified);
802+
if collapse_debuginfo_attr == CollapseMacroDebuginfo::Unspecified
803+
&& attr::contains_name(attrs, sym::rustc_builtin_macro)
804+
{
805+
collapse_debuginfo_attr = CollapseMacroDebuginfo::Yes;
806+
}
807+
802808
let flag = sess.opts.unstable_opts.collapse_macro_debuginfo;
803809
let attr = collapse_debuginfo_attr;
804810
let ext = !is_local;

‎compiler/rustc_feature/src/unstable.rs

+3
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,9 @@ declare_features! (
516516
(unstable, macro_metavar_expr, "1.61.0", Some(83527)),
517517
/// Allows `#[marker]` on certain traits allowing overlapping implementations.
518518
(unstable, marker_trait_attr, "1.30.0", Some(29864)),
519+
/// Allows exhaustive pattern matching on types that contain uninhabited types in cases that are
520+
/// unambiguously sound.
521+
(incomplete, min_exhaustive_patterns, "CURRENT_RUSTC_VERSION", Some(119612)),
519522
/// A minimal, sound subset of specialization intended to be used by the
520523
/// standard library until the soundness issues with specialization
521524
/// are fixed.

‎compiler/rustc_pattern_analysis/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ pub trait TypeCx: Sized + fmt::Debug {
9595
type PatData: Clone;
9696

9797
fn is_exhaustive_patterns_feature_on(&self) -> bool;
98+
fn is_min_exhaustive_patterns_feature_on(&self) -> bool;
9899

99100
/// The number of fields for this constructor.
100101
fn ctor_arity(&self, ctor: &Constructor<Self>, ty: &Self::Ty) -> usize;

‎compiler/rustc_pattern_analysis/src/rustc.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,9 @@ impl<'p, 'tcx> RustcMatchCheckCtxt<'p, 'tcx> {
181181
// `field.ty()` doesn't normalize after substituting.
182182
let ty = cx.tcx.normalize_erasing_regions(cx.param_env, ty);
183183
let is_visible = adt.is_enum() || field.vis.is_accessible_from(cx.module, cx.tcx);
184-
let is_uninhabited = cx.tcx.features().exhaustive_patterns && cx.is_uninhabited(ty);
184+
let is_uninhabited = (cx.tcx.features().exhaustive_patterns
185+
|| cx.tcx.features().min_exhaustive_patterns)
186+
&& cx.is_uninhabited(ty);
185187

186188
if is_uninhabited && (!is_visible || is_non_exhaustive) {
187189
None
@@ -863,6 +865,9 @@ impl<'p, 'tcx> TypeCx for RustcMatchCheckCtxt<'p, 'tcx> {
863865
fn is_exhaustive_patterns_feature_on(&self) -> bool {
864866
self.tcx.features().exhaustive_patterns
865867
}
868+
fn is_min_exhaustive_patterns_feature_on(&self) -> bool {
869+
self.tcx.features().min_exhaustive_patterns
870+
}
866871

867872
fn ctor_arity(&self, ctor: &crate::constructor::Constructor<Self>, ty: &Self::Ty) -> usize {
868873
self.ctor_arity(ctor, *ty)

‎compiler/rustc_pattern_analysis/src/usefulness.rs

+17-9
Original file line numberDiff line numberDiff line change
@@ -548,11 +548,12 @@
548548
//! [`ValidityConstraint::specialize`].
549549
//!
550550
//! Having said all that, in practice we don't fully follow what's been presented in this section.
551-
//! Under `exhaustive_patterns`, we allow omitting empty arms even in `!known_valid` places, for
552-
//! backwards-compatibility until we have a better alternative. Without `exhaustive_patterns`, we
553-
//! mostly treat empty types as inhabited, except specifically a non-nested `!` or empty enum. In
554-
//! this specific case we also allow the empty match regardless of place validity, for
555-
//! backwards-compatibility. Hopefully we can eventually deprecate this.
551+
//! Let's call "toplevel exception" the case where the match scrutinee itself has type `!` or
552+
//! `EmptyEnum`. First, on stable rust, we require `_` patterns for empty types in all cases apart
553+
//! from the toplevel exception. The `exhaustive_patterns` and `min_exaustive_patterns` allow
554+
//! omitting patterns in the cases described above. There's a final detail: in the toplevel
555+
//! exception or with the `exhaustive_patterns` feature, we ignore place validity when checking
556+
//! whether a pattern is required for exhaustiveness. I (Nadrieril) hope to deprecate this behavior.
556557
//!
557558
//!
558559
//!
@@ -1442,10 +1443,17 @@ fn compute_exhaustiveness_and_usefulness<'a, 'p, Cx: TypeCx>(
14421443
// We treat match scrutinees of type `!` or `EmptyEnum` differently.
14431444
let is_toplevel_exception =
14441445
is_top_level && matches!(ctors_for_ty, ConstructorSet::NoConstructors);
1445-
// Whether empty patterns can be omitted for exhaustiveness.
1446-
let can_omit_empty_arms = is_toplevel_exception || mcx.tycx.is_exhaustive_patterns_feature_on();
1447-
// Whether empty patterns are counted as useful or not.
1448-
let empty_arms_are_unreachable = place_validity.is_known_valid() && can_omit_empty_arms;
1446+
// Whether empty patterns are counted as useful or not. We only warn an empty arm unreachable if
1447+
// it is guaranteed unreachable by the opsem (i.e. if the place is `known_valid`).
1448+
let empty_arms_are_unreachable = place_validity.is_known_valid()
1449+
&& (is_toplevel_exception
1450+
|| mcx.tycx.is_exhaustive_patterns_feature_on()
1451+
|| mcx.tycx.is_min_exhaustive_patterns_feature_on());
1452+
// Whether empty patterns can be omitted for exhaustiveness. We ignore place validity in the
1453+
// toplevel exception and `exhaustive_patterns` cases for backwards compatibility.
1454+
let can_omit_empty_arms = empty_arms_are_unreachable
1455+
|| is_toplevel_exception
1456+
|| mcx.tycx.is_exhaustive_patterns_feature_on();
14491457

14501458
// Analyze the constructors present in this column.
14511459
let ctors = matrix.heads().map(|p| p.ctor());

‎compiler/rustc_resolve/src/late.rs

-29
Original file line numberDiff line numberDiff line change
@@ -4424,35 +4424,6 @@ impl<'a: 'ast, 'b, 'ast, 'tcx> LateResolutionVisitor<'a, 'b, 'ast, 'tcx> {
44244424
ExprKind::Type(ref _type_expr, ref _ty) => {
44254425
visit::walk_expr(self, expr);
44264426
}
4427-
// `async |x| ...` gets desugared to `|x| async {...}`, so we need to
4428-
// resolve the arguments within the proper scopes so that usages of them inside the
4429-
// closure are detected as upvars rather than normal closure arg usages.
4430-
//
4431-
// Similarly, `gen |x| ...` gets desugared to `|x| gen {...}`, so we handle that too.
4432-
ExprKind::Closure(box ast::Closure {
4433-
coroutine_kind: Some(_),
4434-
ref fn_decl,
4435-
ref body,
4436-
..
4437-
}) => {
4438-
self.with_rib(ValueNS, RibKind::Normal, |this| {
4439-
this.with_label_rib(RibKind::FnOrCoroutine, |this| {
4440-
// Resolve arguments:
4441-
this.resolve_params(&fn_decl.inputs);
4442-
// No need to resolve return type --
4443-
// the outer closure return type is `FnRetTy::Default`.
4444-
4445-
// Now resolve the inner closure
4446-
{
4447-
// No need to resolve arguments: the inner closure has none.
4448-
// Resolve the return type:
4449-
visit::walk_fn_ret_ty(this, &fn_decl.output);
4450-
// Resolve the body
4451-
this.visit_expr(body);
4452-
}
4453-
})
4454-
});
4455-
}
44564427
// For closures, RibKind::FnOrCoroutine is added in visit_fn
44574428
ExprKind::Closure(box ast::Closure {
44584429
binder: ClosureBinder::For { ref generic_params, span },

‎compiler/rustc_span/src/symbol.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1029,6 +1029,7 @@ symbols! {
10291029
min_const_fn,
10301030
min_const_generics,
10311031
min_const_unsafe_fn,
1032+
min_exhaustive_patterns,
10321033
min_specialization,
10331034
min_type_alias_impl_trait,
10341035
minnumf32,

‎library/alloc/src/str.rs

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ pub use core::str::SplitAsciiWhitespace;
3030
pub use core::str::SplitInclusive;
3131
#[stable(feature = "rust1", since = "1.0.0")]
3232
pub use core::str::SplitWhitespace;
33+
#[unstable(feature = "str_from_raw_parts", issue = "119206")]
34+
pub use core::str::{from_raw_parts, from_raw_parts_mut};
3335
#[stable(feature = "rust1", since = "1.0.0")]
3436
pub use core::str::{from_utf8, from_utf8_mut, Bytes, CharIndices, Chars};
3537
#[stable(feature = "rust1", since = "1.0.0")]

‎library/core/src/str/converts.rs

+39-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Ways to create a `str` from bytes slice.
22
3-
use crate::mem;
3+
use crate::{mem, ptr};
44

55
use super::validations::run_utf8_validation;
66
use super::Utf8Error;
@@ -205,3 +205,41 @@ pub const unsafe fn from_utf8_unchecked_mut(v: &mut [u8]) -> &mut str {
205205
// comes from a reference which is guaranteed to be valid for writes.
206206
unsafe { &mut *(v as *mut [u8] as *mut str) }
207207
}
208+
209+
/// Creates an `&str` from a pointer and a length.
210+
///
211+
/// The pointed-to bytes must be valid UTF-8.
212+
/// If this might not be the case, use `str::from_utf8(slice::from_raw_parts(ptr, len))`,
213+
/// which will return an `Err` if the data isn't valid UTF-8.
214+
///
215+
/// This function is the `str` equivalent of [`slice::from_raw_parts`](crate::slice::from_raw_parts).
216+
/// See that function's documentation for safety concerns and examples.
217+
///
218+
/// The mutable version of this function is [`from_raw_parts_mut`].
219+
#[inline]
220+
#[must_use]
221+
#[unstable(feature = "str_from_raw_parts", issue = "119206")]
222+
#[rustc_const_unstable(feature = "str_from_raw_parts", issue = "119206")]
223+
pub const unsafe fn from_raw_parts<'a>(ptr: *const u8, len: usize) -> &'a str {
224+
// SAFETY: the caller must uphold the safety contract for `from_raw_parts`.
225+
unsafe { &*ptr::from_raw_parts(ptr.cast(), len) }
226+
}
227+
228+
/// Creates an `&mut str` from a pointer and a length.
229+
///
230+
/// The pointed-to bytes must be valid UTF-8.
231+
/// If this might not be the case, use `str::from_utf8_mut(slice::from_raw_parts_mut(ptr, len))`,
232+
/// which will return an `Err` if the data isn't valid UTF-8.
233+
///
234+
/// This function is the `str` equivalent of [`slice::from_raw_parts_mut`](crate::slice::from_raw_parts_mut).
235+
/// See that function's documentation for safety concerns and examples.
236+
///
237+
/// The immutable version of this function is [`from_raw_parts`].
238+
#[inline]
239+
#[must_use]
240+
#[unstable(feature = "str_from_raw_parts", issue = "119206")]
241+
#[rustc_const_unstable(feature = "const_str_from_raw_parts_mut", issue = "119206")]
242+
pub const unsafe fn from_raw_parts_mut<'a>(ptr: *mut u8, len: usize) -> &'a str {
243+
// SAFETY: the caller must uphold the safety contract for `from_raw_parts_mut`.
244+
unsafe { &mut *ptr::from_raw_parts_mut(ptr.cast(), len) }
245+
}

‎library/core/src/str/iter.rs

+25
Original file line numberDiff line numberDiff line change
@@ -1187,6 +1187,31 @@ impl<'a> DoubleEndedIterator for Lines<'a> {
11871187
#[stable(feature = "fused", since = "1.26.0")]
11881188
impl FusedIterator for Lines<'_> {}
11891189

1190+
impl<'a> Lines<'a> {
1191+
/// Returns the remaining lines of the split string.
1192+
///
1193+
/// # Examples
1194+
///
1195+
/// ```
1196+
/// #![feature(str_lines_remainder)]
1197+
///
1198+
/// let mut lines = "a\nb\nc\nd".lines();
1199+
/// assert_eq!(lines.remainder(), Some("a\nb\nc\nd"));
1200+
///
1201+
/// lines.next();
1202+
/// assert_eq!(lines.remainder(), Some("b\nc\nd"));
1203+
///
1204+
/// lines.by_ref().for_each(drop);
1205+
/// assert_eq!(lines.remainder(), None);
1206+
/// ```
1207+
#[inline]
1208+
#[must_use]
1209+
#[unstable(feature = "str_lines_remainder", issue = "77998")]
1210+
pub fn remainder(&self) -> Option<&'a str> {
1211+
self.0.iter.remainder()
1212+
}
1213+
}
1214+
11901215
/// Created with the method [`lines_any`].
11911216
///
11921217
/// [`lines_any`]: str::lines_any

‎library/core/src/str/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ pub use converts::{from_utf8, from_utf8_unchecked};
3333
#[stable(feature = "str_mut_extras", since = "1.20.0")]
3434
pub use converts::{from_utf8_mut, from_utf8_unchecked_mut};
3535

36+
#[unstable(feature = "str_from_raw_parts", issue = "119206")]
37+
pub use converts::{from_raw_parts, from_raw_parts_mut};
38+
3639
#[stable(feature = "rust1", since = "1.0.0")]
3740
pub use error::{ParseBoolError, Utf8Error};
3841

‎library/std/src/io/stdio.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ use crate::io::prelude::*;
88
use crate::cell::{Cell, RefCell};
99
use crate::fmt;
1010
use crate::fs::File;
11-
use crate::io::{self, BorrowedCursor, BufReader, IoSlice, IoSliceMut, LineWriter, Lines};
11+
use crate::io::{
12+
self, BorrowedCursor, BufReader, IoSlice, IoSliceMut, LineWriter, Lines, SpecReadByte,
13+
};
1214
use crate::sync::atomic::{AtomicBool, Ordering};
1315
use crate::sync::{Arc, Mutex, MutexGuard, OnceLock, ReentrantMutex, ReentrantMutexGuard};
1416
use crate::sys::stdio;
@@ -483,6 +485,13 @@ impl Read for StdinLock<'_> {
483485
}
484486
}
485487

488+
impl SpecReadByte for StdinLock<'_> {
489+
#[inline]
490+
fn spec_read_byte(&mut self) -> Option<io::Result<u8>> {
491+
BufReader::spec_read_byte(&mut *self.inner)
492+
}
493+
}
494+
486495
#[stable(feature = "rust1", since = "1.0.0")]
487496
impl BufRead for StdinLock<'_> {
488497
fn fill_buf(&mut self) -> io::Result<&[u8]> {

‎src/doc/rustc/src/platform-support/csky-unknown-linux-gnuabiv2.md

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ cc = "${TOOLCHAIN_PATH}/bin/csky-linux-gnuabiv2-gcc"
5050
[target.csky-unknown-linux-gnuabiv2hf]
5151
# ADJUST THIS PATH TO POINT AT YOUR TOOLCHAIN
5252
cc = "${TOOLCHAIN_PATH}/bin/csky-linux-gnuabiv2-gcc"
53+
```
5354

5455
### Build
5556

‎tests/assembly/targets/targets-elf.rs

+1-64
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,5 @@
11
// assembly-output: emit-asm
22
// ignore-tidy-linelength
3-
// revisions: aarch64_apple_darwin
4-
// [aarch64_apple_darwin] compile-flags: --target aarch64-apple-darwin
5-
// [aarch64_apple_darwin] needs-llvm-components: aarch64
6-
// revisions: aarch64_apple_ios
7-
// [aarch64_apple_ios] compile-flags: --target aarch64-apple-ios
8-
// [aarch64_apple_ios] needs-llvm-components: aarch64
9-
// revisions: aarch64_apple_ios_macabi
10-
// [aarch64_apple_ios_macabi] compile-flags: --target aarch64-apple-ios-macabi
11-
// [aarch64_apple_ios_macabi] needs-llvm-components: aarch64
12-
// revisions: aarch64_apple_ios_sim
13-
// [aarch64_apple_ios_sim] compile-flags: --target aarch64-apple-ios-sim
14-
// [aarch64_apple_ios_sim] needs-llvm-components: aarch64
15-
// revisions: aarch64_apple_tvos
16-
// [aarch64_apple_tvos] compile-flags: --target aarch64-apple-tvos
17-
// [aarch64_apple_tvos] needs-llvm-components: aarch64
18-
// revisions: aarch64_apple_tvos_sim
19-
// [aarch64_apple_tvos_sim] compile-flags: --target aarch64-apple-tvos-sim
20-
// [aarch64_apple_tvos_sim] needs-llvm-components: aarch64
21-
// revisions: aarch64_apple_watchos
22-
// [aarch64_apple_watchos] compile-flags: --target aarch64-apple-watchos
23-
// [aarch64_apple_watchos] needs-llvm-components: aarch64
24-
// revisions: aarch64_apple_watchos_sim
25-
// [aarch64_apple_watchos_sim] compile-flags: --target aarch64-apple-watchos-sim
26-
// [aarch64_apple_watchos_sim] needs-llvm-components: aarch64
273
// revisions: aarch64_be_unknown_linux_gnu
284
// [aarch64_be_unknown_linux_gnu] compile-flags: --target aarch64_be-unknown-linux-gnu
295
// [aarch64_be_unknown_linux_gnu] needs-llvm-components: aarch64
@@ -93,15 +69,6 @@
9369
// revisions: aarch64_wrs_vxworks
9470
// [aarch64_wrs_vxworks] compile-flags: --target aarch64-wrs-vxworks
9571
// [aarch64_wrs_vxworks] needs-llvm-components: aarch64
96-
// revisions: arm64_32_apple_watchos
97-
// [arm64_32_apple_watchos] compile-flags: --target arm64_32-apple-watchos
98-
// [arm64_32_apple_watchos] needs-llvm-components: aarch64
99-
// revisions: arm64e_apple_darwin
100-
// [arm64e_apple_darwin] compile-flags: --target arm64e-apple-darwin
101-
// [arm64e_apple_darwin] needs-llvm-components: aarch64
102-
// revisions: arm64e_apple_ios
103-
// [arm64e_apple_ios] compile-flags: --target arm64e-apple-ios
104-
// [arm64e_apple_ios] needs-llvm-components: aarch64
10572
// revisions: arm_linux_androideabi
10673
// [arm_linux_androideabi] compile-flags: --target arm-linux-androideabi
10774
// [arm_linux_androideabi] needs-llvm-components: arm
@@ -201,18 +168,12 @@
201168
// revisions: armv7a_none_eabihf
202169
// [armv7a_none_eabihf] compile-flags: --target armv7a-none-eabihf
203170
// [armv7a_none_eabihf] needs-llvm-components: arm
204-
// revisions: armv7k_apple_watchos
205-
// [armv7k_apple_watchos] compile-flags: --target armv7k-apple-watchos
206-
// [armv7k_apple_watchos] needs-llvm-components: arm
207171
// revisions: armv7r_none_eabi
208172
// [armv7r_none_eabi] compile-flags: --target armv7r-none-eabi
209173
// [armv7r_none_eabi] needs-llvm-components: arm
210174
// revisions: armv7r_none_eabihf
211175
// [armv7r_none_eabihf] compile-flags: --target armv7r-none-eabihf
212176
// [armv7r_none_eabihf] needs-llvm-components: arm
213-
// revisions: armv7s_apple_ios
214-
// [armv7s_apple_ios] compile-flags: --target armv7s-apple-ios
215-
// [armv7s_apple_ios] needs-llvm-components: arm
216177
// FIXME: disabled since it fails on CI saying the csky component is missing
217178
/*
218179
revisions: csky_unknown_linux_gnuabiv2
@@ -228,9 +189,6 @@
228189
// revisions: hexagon_unknown_none_elf
229190
// [hexagon_unknown_none_elf] compile-flags: --target hexagon-unknown-none-elf
230191
// [hexagon_unknown_none_elf] needs-llvm-components: hexagon
231-
// revisions: i386_apple_ios
232-
// [i386_apple_ios] compile-flags: --target i386-apple-ios
233-
// [i386_apple_ios] needs-llvm-components: x86
234192
// revisions: i586_pc_nto_qnx700
235193
// [i586_pc_nto_qnx700] compile-flags: --target i586-pc-nto-qnx700
236194
// [i586_pc_nto_qnx700] needs-llvm-components: x86
@@ -243,9 +201,6 @@
243201
// revisions: i586_unknown_netbsd
244202
// [i586_unknown_netbsd] compile-flags: --target i586-unknown-netbsd
245203
// [i586_unknown_netbsd] needs-llvm-components: x86
246-
// revisions: i686_apple_darwin
247-
// [i686_apple_darwin] compile-flags: --target i686-apple-darwin
248-
// [i686_apple_darwin] needs-llvm-components: x86
249204
// revisions: i686_linux_android
250205
// [i686_linux_android] compile-flags: --target i686-linux-android
251206
// [i686_linux_android] needs-llvm-components: x86
@@ -537,21 +492,6 @@
537492
// revisions: wasm32_wasi_preview2
538493
// [wasm32_wasi_preview2] compile-flags: --target wasm32-wasi-preview2
539494
// [wasm32_wasi_preview2] needs-llvm-components: webassembly
540-
// revisions: x86_64_apple_darwin
541-
// [x86_64_apple_darwin] compile-flags: --target x86_64-apple-darwin
542-
// [x86_64_apple_darwin] needs-llvm-components: x86
543-
// revisions: x86_64_apple_ios
544-
// [x86_64_apple_ios] compile-flags: --target x86_64-apple-ios
545-
// [x86_64_apple_ios] needs-llvm-components: x86
546-
// revisions: x86_64_apple_ios_macabi
547-
// [x86_64_apple_ios_macabi] compile-flags: --target x86_64-apple-ios-macabi
548-
// [x86_64_apple_ios_macabi] needs-llvm-components: x86
549-
// revisions: x86_64_apple_tvos
550-
// [x86_64_apple_tvos] compile-flags: --target x86_64-apple-tvos
551-
// [x86_64_apple_tvos] needs-llvm-components: x86
552-
// revisions: x86_64_apple_watchos_sim
553-
// [x86_64_apple_watchos_sim] compile-flags: --target x86_64-apple-watchos-sim
554-
// [x86_64_apple_watchos_sim] needs-llvm-components: x86
555495
// revisions: x86_64_fortanix_unknown_sgx
556496
// [x86_64_fortanix_unknown_sgx] compile-flags: --target x86_64-fortanix-unknown-sgx
557497
// [x86_64_fortanix_unknown_sgx] needs-llvm-components: x86
@@ -618,9 +558,6 @@
618558
// revisions: x86_64_wrs_vxworks
619559
// [x86_64_wrs_vxworks] compile-flags: --target x86_64-wrs-vxworks
620560
// [x86_64_wrs_vxworks] needs-llvm-components: x86
621-
// revisions: x86_64h_apple_darwin
622-
// [x86_64h_apple_darwin] compile-flags: --target x86_64h-apple-darwin
623-
// [x86_64h_apple_darwin] needs-llvm-components: x86
624561

625562
// Sanity-check that each target can produce assembly code.
626563

@@ -636,4 +573,4 @@ pub fn test() -> u8 {
636573
42
637574
}
638575

639-
// CHECK: .section
576+
// CHECK: .text
+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
// assembly-output: emit-asm
2+
// ignore-tidy-linelength
3+
// revisions: aarch64_apple_darwin
4+
// [aarch64_apple_darwin] compile-flags: --target aarch64-apple-darwin
5+
// [aarch64_apple_darwin] needs-llvm-components: aarch64
6+
// revisions: aarch64_apple_ios
7+
// [aarch64_apple_ios] compile-flags: --target aarch64-apple-ios
8+
// [aarch64_apple_ios] needs-llvm-components: aarch64
9+
// revisions: aarch64_apple_ios_macabi
10+
// [aarch64_apple_ios_macabi] compile-flags: --target aarch64-apple-ios-macabi
11+
// [aarch64_apple_ios_macabi] needs-llvm-components: aarch64
12+
// revisions: aarch64_apple_ios_sim
13+
// [aarch64_apple_ios_sim] compile-flags: --target aarch64-apple-ios-sim
14+
// [aarch64_apple_ios_sim] needs-llvm-components: aarch64
15+
// revisions: aarch64_apple_tvos
16+
// [aarch64_apple_tvos] compile-flags: --target aarch64-apple-tvos
17+
// [aarch64_apple_tvos] needs-llvm-components: aarch64
18+
// revisions: aarch64_apple_tvos_sim
19+
// [aarch64_apple_tvos_sim] compile-flags: --target aarch64-apple-tvos-sim
20+
// [aarch64_apple_tvos_sim] needs-llvm-components: aarch64
21+
// revisions: aarch64_apple_watchos
22+
// [aarch64_apple_watchos] compile-flags: --target aarch64-apple-watchos
23+
// [aarch64_apple_watchos] needs-llvm-components: aarch64
24+
// revisions: aarch64_apple_watchos_sim
25+
// [aarch64_apple_watchos_sim] compile-flags: --target aarch64-apple-watchos-sim
26+
// [aarch64_apple_watchos_sim] needs-llvm-components: aarch64
27+
// revisions: arm64_32_apple_watchos
28+
// [arm64_32_apple_watchos] compile-flags: --target arm64_32-apple-watchos
29+
// [arm64_32_apple_watchos] needs-llvm-components: aarch64
30+
// revisions: arm64e_apple_darwin
31+
// [arm64e_apple_darwin] compile-flags: --target arm64e-apple-darwin
32+
// [arm64e_apple_darwin] needs-llvm-components: aarch64
33+
// revisions: arm64e_apple_ios
34+
// [arm64e_apple_ios] compile-flags: --target arm64e-apple-ios
35+
// [arm64e_apple_ios] needs-llvm-components: aarch64
36+
// revisions: armv7k_apple_watchos
37+
// [armv7k_apple_watchos] compile-flags: --target armv7k-apple-watchos
38+
// [armv7k_apple_watchos] needs-llvm-components: arm
39+
// revisions: armv7s_apple_ios
40+
// [armv7s_apple_ios] compile-flags: --target armv7s-apple-ios
41+
// [armv7s_apple_ios] needs-llvm-components: arm
42+
// revisions: i386_apple_ios
43+
// [i386_apple_ios] compile-flags: --target i386-apple-ios
44+
// [i386_apple_ios] needs-llvm-components: x86
45+
// revisions: i686_apple_darwin
46+
// [i686_apple_darwin] compile-flags: --target i686-apple-darwin
47+
// [i686_apple_darwin] needs-llvm-components: x86
48+
// revisions: x86_64_apple_darwin
49+
// [x86_64_apple_darwin] compile-flags: --target x86_64-apple-darwin
50+
// [x86_64_apple_darwin] needs-llvm-components: x86
51+
// revisions: x86_64_apple_ios
52+
// [x86_64_apple_ios] compile-flags: --target x86_64-apple-ios
53+
// [x86_64_apple_ios] needs-llvm-components: x86
54+
// revisions: x86_64_apple_ios_macabi
55+
// [x86_64_apple_ios_macabi] compile-flags: --target x86_64-apple-ios-macabi
56+
// [x86_64_apple_ios_macabi] needs-llvm-components: x86
57+
// revisions: x86_64_apple_tvos
58+
// [x86_64_apple_tvos] compile-flags: --target x86_64-apple-tvos
59+
// [x86_64_apple_tvos] needs-llvm-components: x86
60+
// revisions: x86_64_apple_watchos_sim
61+
// [x86_64_apple_watchos_sim] compile-flags: --target x86_64-apple-watchos-sim
62+
// [x86_64_apple_watchos_sim] needs-llvm-components: x86
63+
// revisions: x86_64h_apple_darwin
64+
// [x86_64h_apple_darwin] compile-flags: --target x86_64h-apple-darwin
65+
// [x86_64h_apple_darwin] needs-llvm-components: x86
66+
67+
// Sanity-check that each target can produce assembly code.
68+
69+
#![feature(no_core, lang_items)]
70+
#![no_std]
71+
#![no_core]
72+
#![crate_type = "lib"]
73+
74+
#[lang = "sized"]
75+
trait Sized {}
76+
77+
pub fn test() -> u8 {
78+
42
79+
}
80+
81+
// CHECK: .section __TEXT,__text
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// edition:2021
2+
3+
#![feature(async_closure)]
4+
5+
fn main() {
6+
let x = async move |x: &str| {
7+
//~^ ERROR lifetime may not live long enough
8+
// This error is proof that the `&str` type is higher-ranked.
9+
// This won't work until async closures are fully impl'd.
10+
println!("{x}");
11+
};
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
error: lifetime may not live long enough
2+
--> $DIR/higher-ranked.rs:6:34
3+
|
4+
LL | let x = async move |x: &str| {
5+
| ____________________________-___-_^
6+
| | | |
7+
| | | return type of closure `{async closure body@$DIR/higher-ranked.rs:6:34: 11:6}` contains a lifetime `'2`
8+
| | let's call the lifetime of this reference `'1`
9+
LL | |
10+
LL | | // This error is proof that the `&str` type is higher-ranked.
11+
LL | | // This won't work until async closures are fully impl'd.
12+
LL | | println!("{x}");
13+
LL | | };
14+
| |_____^ returning this value requires that `'1` must outlive `'2`
15+
16+
error: aborting due to 1 previous error
17+

‎tests/ui/pattern/usefulness/empty-types.exhaustive_patterns.stderr

+50-50
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
error: unreachable pattern
2-
--> $DIR/empty-types.rs:47:9
2+
--> $DIR/empty-types.rs:50:9
33
|
44
LL | _ => {}
55
| ^
66
|
77
note: the lint level is defined here
8-
--> $DIR/empty-types.rs:13:9
8+
--> $DIR/empty-types.rs:16:9
99
|
1010
LL | #![deny(unreachable_patterns)]
1111
| ^^^^^^^^^^^^^^^^^^^^
1212

1313
error: unreachable pattern
14-
--> $DIR/empty-types.rs:50:9
14+
--> $DIR/empty-types.rs:53:9
1515
|
1616
LL | _x => {}
1717
| ^^
1818

1919
error[E0004]: non-exhaustive patterns: type `&!` is non-empty
20-
--> $DIR/empty-types.rs:54:11
20+
--> $DIR/empty-types.rs:57:11
2121
|
2222
LL | match ref_never {}
2323
| ^^^^^^^^^
@@ -32,31 +32,31 @@ LL + }
3232
|
3333

3434
error: unreachable pattern
35-
--> $DIR/empty-types.rs:69:9
35+
--> $DIR/empty-types.rs:72:9
3636
|
3737
LL | (_, _) => {}
3838
| ^^^^^^
3939

4040
error: unreachable pattern
41-
--> $DIR/empty-types.rs:76:9
41+
--> $DIR/empty-types.rs:79:9
4242
|
4343
LL | _ => {}
4444
| ^
4545

4646
error: unreachable pattern
47-
--> $DIR/empty-types.rs:79:9
47+
--> $DIR/empty-types.rs:82:9
4848
|
4949
LL | (_, _) => {}
5050
| ^^^^^^
5151

5252
error: unreachable pattern
53-
--> $DIR/empty-types.rs:83:9
53+
--> $DIR/empty-types.rs:86:9
5454
|
5555
LL | _ => {}
5656
| ^
5757

5858
error[E0004]: non-exhaustive patterns: `Ok(_)` not covered
59-
--> $DIR/empty-types.rs:87:11
59+
--> $DIR/empty-types.rs:90:11
6060
|
6161
LL | match res_u32_never {}
6262
| ^^^^^^^^^^^^^ pattern `Ok(_)` not covered
@@ -75,19 +75,19 @@ LL + }
7575
|
7676

7777
error: unreachable pattern
78-
--> $DIR/empty-types.rs:95:9
78+
--> $DIR/empty-types.rs:98:9
7979
|
8080
LL | Err(_) => {}
8181
| ^^^^^^
8282

8383
error: unreachable pattern
84-
--> $DIR/empty-types.rs:100:9
84+
--> $DIR/empty-types.rs:103:9
8585
|
8686
LL | Err(_) => {}
8787
| ^^^^^^
8888

8989
error[E0004]: non-exhaustive patterns: `Ok(1_u32..=u32::MAX)` not covered
90-
--> $DIR/empty-types.rs:97:11
90+
--> $DIR/empty-types.rs:100:11
9191
|
9292
LL | match res_u32_never {
9393
| ^^^^^^^^^^^^^ pattern `Ok(1_u32..=u32::MAX)` not covered
@@ -105,7 +105,7 @@ LL ~ Ok(1_u32..=u32::MAX) => todo!()
105105
|
106106

107107
error[E0005]: refutable pattern in local binding
108-
--> $DIR/empty-types.rs:104:9
108+
--> $DIR/empty-types.rs:107:9
109109
|
110110
LL | let Ok(_x) = res_u32_never.as_ref();
111111
| ^^^^^^ pattern `Err(_)` not covered
@@ -119,121 +119,121 @@ LL | let Ok(_x) = res_u32_never.as_ref() else { todo!() };
119119
| ++++++++++++++++
120120

121121
error: unreachable pattern
122-
--> $DIR/empty-types.rs:115:9
122+
--> $DIR/empty-types.rs:118:9
123123
|
124124
LL | _ => {}
125125
| ^
126126

127127
error: unreachable pattern
128-
--> $DIR/empty-types.rs:119:9
128+
--> $DIR/empty-types.rs:122:9
129129
|
130130
LL | Ok(_) => {}
131131
| ^^^^^
132132

133133
error: unreachable pattern
134-
--> $DIR/empty-types.rs:122:9
134+
--> $DIR/empty-types.rs:125:9
135135
|
136136
LL | Ok(_) => {}
137137
| ^^^^^
138138

139139
error: unreachable pattern
140-
--> $DIR/empty-types.rs:123:9
140+
--> $DIR/empty-types.rs:126:9
141141
|
142142
LL | _ => {}
143143
| ^
144144

145145
error: unreachable pattern
146-
--> $DIR/empty-types.rs:126:9
146+
--> $DIR/empty-types.rs:129:9
147147
|
148148
LL | Ok(_) => {}
149149
| ^^^^^
150150

151151
error: unreachable pattern
152-
--> $DIR/empty-types.rs:127:9
152+
--> $DIR/empty-types.rs:130:9
153153
|
154154
LL | Err(_) => {}
155155
| ^^^^^^
156156

157157
error: unreachable pattern
158-
--> $DIR/empty-types.rs:136:13
158+
--> $DIR/empty-types.rs:139:13
159159
|
160160
LL | _ => {}
161161
| ^
162162

163163
error: unreachable pattern
164-
--> $DIR/empty-types.rs:139:13
164+
--> $DIR/empty-types.rs:142:13
165165
|
166166
LL | _ if false => {}
167167
| ^
168168

169169
error: unreachable pattern
170-
--> $DIR/empty-types.rs:148:13
170+
--> $DIR/empty-types.rs:151:13
171171
|
172172
LL | Some(_) => {}
173173
| ^^^^^^^
174174

175175
error: unreachable pattern
176-
--> $DIR/empty-types.rs:152:13
176+
--> $DIR/empty-types.rs:155:13
177177
|
178178
LL | _ => {}
179179
| ^
180180

181181
error: unreachable pattern
182-
--> $DIR/empty-types.rs:204:13
182+
--> $DIR/empty-types.rs:207:13
183183
|
184184
LL | _ => {}
185185
| ^
186186

187187
error: unreachable pattern
188-
--> $DIR/empty-types.rs:209:13
188+
--> $DIR/empty-types.rs:212:13
189189
|
190190
LL | _ => {}
191191
| ^
192192

193193
error: unreachable pattern
194-
--> $DIR/empty-types.rs:214:13
194+
--> $DIR/empty-types.rs:217:13
195195
|
196196
LL | _ => {}
197197
| ^
198198

199199
error: unreachable pattern
200-
--> $DIR/empty-types.rs:219:13
200+
--> $DIR/empty-types.rs:222:13
201201
|
202202
LL | _ => {}
203203
| ^
204204

205205
error: unreachable pattern
206-
--> $DIR/empty-types.rs:225:13
206+
--> $DIR/empty-types.rs:228:13
207207
|
208208
LL | _ => {}
209209
| ^
210210

211211
error: unreachable pattern
212-
--> $DIR/empty-types.rs:284:9
212+
--> $DIR/empty-types.rs:287:9
213213
|
214214
LL | _ => {}
215215
| ^
216216

217217
error: unreachable pattern
218-
--> $DIR/empty-types.rs:287:9
218+
--> $DIR/empty-types.rs:290:9
219219
|
220220
LL | (_, _) => {}
221221
| ^^^^^^
222222

223223
error: unreachable pattern
224-
--> $DIR/empty-types.rs:290:9
224+
--> $DIR/empty-types.rs:293:9
225225
|
226226
LL | Ok(_) => {}
227227
| ^^^^^
228228

229229
error: unreachable pattern
230-
--> $DIR/empty-types.rs:291:9
230+
--> $DIR/empty-types.rs:294:9
231231
|
232232
LL | Err(_) => {}
233233
| ^^^^^^
234234

235235
error[E0004]: non-exhaustive patterns: type `&[!]` is non-empty
236-
--> $DIR/empty-types.rs:323:11
236+
--> $DIR/empty-types.rs:326:11
237237
|
238238
LL | match slice_never {}
239239
| ^^^^^^^^^^^
@@ -247,7 +247,7 @@ LL + }
247247
|
248248

249249
error[E0004]: non-exhaustive patterns: `&[]` not covered
250-
--> $DIR/empty-types.rs:334:11
250+
--> $DIR/empty-types.rs:337:11
251251
|
252252
LL | match slice_never {
253253
| ^^^^^^^^^^^ pattern `&[]` not covered
@@ -260,7 +260,7 @@ LL + &[] => todo!()
260260
|
261261

262262
error[E0004]: non-exhaustive patterns: `&[]` not covered
263-
--> $DIR/empty-types.rs:347:11
263+
--> $DIR/empty-types.rs:350:11
264264
|
265265
LL | match slice_never {
266266
| ^^^^^^^^^^^ pattern `&[]` not covered
@@ -274,7 +274,7 @@ LL + &[] => todo!()
274274
|
275275

276276
error[E0004]: non-exhaustive patterns: type `[!]` is non-empty
277-
--> $DIR/empty-types.rs:353:11
277+
--> $DIR/empty-types.rs:356:11
278278
|
279279
LL | match *slice_never {}
280280
| ^^^^^^^^^^^^
@@ -288,25 +288,25 @@ LL + }
288288
|
289289

290290
error: unreachable pattern
291-
--> $DIR/empty-types.rs:363:9
291+
--> $DIR/empty-types.rs:366:9
292292
|
293293
LL | _ => {}
294294
| ^
295295

296296
error: unreachable pattern
297-
--> $DIR/empty-types.rs:366:9
297+
--> $DIR/empty-types.rs:369:9
298298
|
299299
LL | [_, _, _] => {}
300300
| ^^^^^^^^^
301301

302302
error: unreachable pattern
303-
--> $DIR/empty-types.rs:369:9
303+
--> $DIR/empty-types.rs:372:9
304304
|
305305
LL | [_, ..] => {}
306306
| ^^^^^^^
307307

308308
error[E0004]: non-exhaustive patterns: type `[!; 0]` is non-empty
309-
--> $DIR/empty-types.rs:383:11
309+
--> $DIR/empty-types.rs:386:11
310310
|
311311
LL | match array_0_never {}
312312
| ^^^^^^^^^^^^^
@@ -320,13 +320,13 @@ LL + }
320320
|
321321

322322
error: unreachable pattern
323-
--> $DIR/empty-types.rs:390:9
323+
--> $DIR/empty-types.rs:393:9
324324
|
325325
LL | _ => {}
326326
| ^
327327

328328
error[E0004]: non-exhaustive patterns: `[]` not covered
329-
--> $DIR/empty-types.rs:392:11
329+
--> $DIR/empty-types.rs:395:11
330330
|
331331
LL | match array_0_never {
332332
| ^^^^^^^^^^^^^ pattern `[]` not covered
@@ -340,49 +340,49 @@ LL + [] => todo!()
340340
|
341341

342342
error: unreachable pattern
343-
--> $DIR/empty-types.rs:411:9
343+
--> $DIR/empty-types.rs:414:9
344344
|
345345
LL | Some(_) => {}
346346
| ^^^^^^^
347347

348348
error: unreachable pattern
349-
--> $DIR/empty-types.rs:416:9
349+
--> $DIR/empty-types.rs:419:9
350350
|
351351
LL | Some(_a) => {}
352352
| ^^^^^^^^
353353

354354
error: unreachable pattern
355-
--> $DIR/empty-types.rs:421:9
355+
--> $DIR/empty-types.rs:424:9
356356
|
357357
LL | _ => {}
358358
| ^
359359

360360
error: unreachable pattern
361-
--> $DIR/empty-types.rs:426:9
361+
--> $DIR/empty-types.rs:429:9
362362
|
363363
LL | _a => {}
364364
| ^^
365365

366366
error: unreachable pattern
367-
--> $DIR/empty-types.rs:598:9
367+
--> $DIR/empty-types.rs:601:9
368368
|
369369
LL | _ => {}
370370
| ^
371371

372372
error: unreachable pattern
373-
--> $DIR/empty-types.rs:601:9
373+
--> $DIR/empty-types.rs:604:9
374374
|
375375
LL | _x => {}
376376
| ^^
377377

378378
error: unreachable pattern
379-
--> $DIR/empty-types.rs:604:9
379+
--> $DIR/empty-types.rs:607:9
380380
|
381381
LL | _ if false => {}
382382
| ^
383383

384384
error: unreachable pattern
385-
--> $DIR/empty-types.rs:607:9
385+
--> $DIR/empty-types.rs:610:9
386386
|
387387
LL | _x if false => {}
388388
| ^^

‎tests/ui/pattern/usefulness/empty-types.min_exh_pats.stderr

+630
Large diffs are not rendered by default.

‎tests/ui/pattern/usefulness/empty-types.normal.stderr

+49-49
Large diffs are not rendered by default.

‎tests/ui/pattern/usefulness/empty-types.rs

+44-40
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// revisions: normal exhaustive_patterns
1+
// revisions: normal min_exh_pats exhaustive_patterns
2+
// gate-test-min_exhaustive_patterns
23
//
34
// This tests correct handling of empty types in exhaustiveness checking.
45
//
@@ -9,6 +10,8 @@
910
// This feature is useful to avoid `!` falling back to `()` all the time.
1011
#![feature(never_type_fallback)]
1112
#![cfg_attr(exhaustive_patterns, feature(exhaustive_patterns))]
13+
#![cfg_attr(min_exh_pats, feature(min_exhaustive_patterns))]
14+
//[min_exh_pats]~^ WARN the feature `min_exhaustive_patterns` is incomplete
1215
#![allow(dead_code, unreachable_code)]
1316
#![deny(unreachable_patterns)]
1417

@@ -66,17 +69,17 @@ fn basic(x: NeverBundle) {
6669
match tuple_half_never {}
6770
//[normal]~^ ERROR non-empty
6871
match tuple_half_never {
69-
(_, _) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
72+
(_, _) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
7073
}
7174

7275
let tuple_never: (!, !) = x.tuple_never;
7376
match tuple_never {}
7477
//[normal]~^ ERROR non-empty
7578
match tuple_never {
76-
_ => {} //[exhaustive_patterns]~ ERROR unreachable pattern
79+
_ => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
7780
}
7881
match tuple_never {
79-
(_, _) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
82+
(_, _) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
8083
}
8184
match tuple_never.0 {}
8285
match tuple_never.0 {
@@ -92,12 +95,12 @@ fn basic(x: NeverBundle) {
9295
}
9396
match res_u32_never {
9497
Ok(_) => {}
95-
Err(_) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
98+
Err(_) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
9699
}
97100
match res_u32_never {
98101
//~^ ERROR non-exhaustive
99102
Ok(0) => {}
100-
Err(_) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
103+
Err(_) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
101104
}
102105
let Ok(_x) = res_u32_never;
103106
//[normal]~^ ERROR refutable
@@ -106,25 +109,25 @@ fn basic(x: NeverBundle) {
106109
// Non-obvious difference: here there's an implicit dereference in the patterns, which makes the
107110
// inner place !known_valid. `exhaustive_patterns` ignores this.
108111
let Ok(_x) = &res_u32_never;
109-
//[normal]~^ ERROR refutable
112+
//[normal,min_exh_pats]~^ ERROR refutable
110113

111114
let result_never: Result<!, !> = x.result_never;
112115
match result_never {}
113116
//[normal]~^ ERROR non-exhaustive
114117
match result_never {
115-
_ => {} //[exhaustive_patterns]~ ERROR unreachable pattern
118+
_ => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
116119
}
117120
match result_never {
118121
//[normal]~^ ERROR non-exhaustive
119-
Ok(_) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
122+
Ok(_) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
120123
}
121124
match result_never {
122-
Ok(_) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
123-
_ => {} //[exhaustive_patterns]~ ERROR unreachable pattern
125+
Ok(_) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
126+
_ => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
124127
}
125128
match result_never {
126-
Ok(_) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
127-
Err(_) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
129+
Ok(_) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
130+
Err(_) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
128131
}
129132
}
130133

@@ -145,11 +148,11 @@ fn void_same_as_never(x: NeverBundle) {
145148
}
146149
match opt_void {
147150
None => {}
148-
Some(_) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
151+
Some(_) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
149152
}
150153
match opt_void {
151154
None => {}
152-
_ => {} //[exhaustive_patterns]~ ERROR unreachable pattern
155+
_ => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
153156
}
154157

155158
let ref_void: &Void = &x.void;
@@ -159,7 +162,7 @@ fn void_same_as_never(x: NeverBundle) {
159162
}
160163
let ref_opt_void: &Option<Void> = &None;
161164
match *ref_opt_void {
162-
//[normal]~^ ERROR non-exhaustive
165+
//[normal,min_exh_pats]~^ ERROR non-exhaustive
163166
None => {}
164167
}
165168
match *ref_opt_void {
@@ -284,11 +287,11 @@ fn nested_validity_tracking(bundle: NeverBundle) {
284287
_ => {} //~ ERROR unreachable pattern
285288
}
286289
match tuple_never {
287-
(_, _) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
290+
(_, _) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
288291
}
289292
match result_never {
290-
Ok(_) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
291-
Err(_) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
293+
Ok(_) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
294+
Err(_) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
292295
}
293296

294297
// These should be considered !known_valid and not warn unreachable.
@@ -309,21 +312,21 @@ fn invalid_empty_match(bundle: NeverBundle) {
309312
match *x {}
310313

311314
let x: &(u32, !) = &bundle.tuple_half_never;
312-
match *x {} //[normal]~ ERROR non-exhaustive
315+
match *x {} //[normal,min_exh_pats]~ ERROR non-exhaustive
313316
let x: &(!, !) = &bundle.tuple_never;
314-
match *x {} //[normal]~ ERROR non-exhaustive
317+
match *x {} //[normal,min_exh_pats]~ ERROR non-exhaustive
315318
let x: &Result<!, !> = &bundle.result_never;
316-
match *x {} //[normal]~ ERROR non-exhaustive
319+
match *x {} //[normal,min_exh_pats]~ ERROR non-exhaustive
317320
let x: &[!; 3] = &bundle.array_3_never;
318-
match *x {} //[normal]~ ERROR non-exhaustive
321+
match *x {} //[normal,min_exh_pats]~ ERROR non-exhaustive
319322
}
320323

321324
fn arrays_and_slices(x: NeverBundle) {
322325
let slice_never: &[!] = &[];
323326
match slice_never {}
324327
//~^ ERROR non-empty
325328
match slice_never {
326-
//[normal]~^ ERROR not covered
329+
//[normal,min_exh_pats]~^ ERROR not covered
327330
[] => {}
328331
}
329332
match slice_never {
@@ -332,7 +335,7 @@ fn arrays_and_slices(x: NeverBundle) {
332335
[_, _, ..] => {}
333336
}
334337
match slice_never {
335-
//[normal]~^ ERROR `&[]`, `&[_]` and `&[_, _]` not covered
338+
//[normal,min_exh_pats]~^ ERROR `&[]`, `&[_]` and `&[_, _]` not covered
336339
//[exhaustive_patterns]~^^ ERROR `&[]` not covered
337340
[_, _, _, ..] => {}
338341
}
@@ -345,7 +348,7 @@ fn arrays_and_slices(x: NeverBundle) {
345348
_x => {}
346349
}
347350
match slice_never {
348-
//[normal]~^ ERROR `&[]` and `&[_, ..]` not covered
351+
//[normal,min_exh_pats]~^ ERROR `&[]` and `&[_, ..]` not covered
349352
//[exhaustive_patterns]~^^ ERROR `&[]` not covered
350353
&[..] if false => {}
351354
}
@@ -360,13 +363,13 @@ fn arrays_and_slices(x: NeverBundle) {
360363
match array_3_never {}
361364
//[normal]~^ ERROR non-empty
362365
match array_3_never {
363-
_ => {} //[exhaustive_patterns]~ ERROR unreachable pattern
366+
_ => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
364367
}
365368
match array_3_never {
366-
[_, _, _] => {} //[exhaustive_patterns]~ ERROR unreachable pattern
369+
[_, _, _] => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
367370
}
368371
match array_3_never {
369-
[_, ..] => {} //[exhaustive_patterns]~ ERROR unreachable pattern
372+
[_, ..] => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
370373
}
371374

372375
let ref_array_3_never: &[!; 3] = &array_3_never;
@@ -408,22 +411,22 @@ fn bindings(x: NeverBundle) {
408411
match opt_never {
409412
None => {}
410413
// !useful, !reachable
411-
Some(_) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
414+
Some(_) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
412415
}
413416
match opt_never {
414417
None => {}
415418
// !useful, !reachable
416-
Some(_a) => {} //[exhaustive_patterns]~ ERROR unreachable pattern
419+
Some(_a) => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
417420
}
418421
match opt_never {
419422
None => {}
420423
// !useful, !reachable
421-
_ => {} //[exhaustive_patterns]~ ERROR unreachable pattern
424+
_ => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
422425
}
423426
match opt_never {
424427
None => {}
425428
// !useful, !reachable
426-
_a => {} //[exhaustive_patterns]~ ERROR unreachable pattern
429+
_a => {} //[exhaustive_patterns,min_exh_pats]~ ERROR unreachable pattern
427430
}
428431

429432
// The scrutinee is known_valid, but under the `&` isn't anymore.
@@ -444,7 +447,7 @@ fn bindings(x: NeverBundle) {
444447
&_a => {}
445448
}
446449
match ref_opt_never {
447-
//[normal]~^ ERROR non-exhaustive
450+
//[normal,min_exh_pats]~^ ERROR non-exhaustive
448451
&None => {}
449452
}
450453
match ref_opt_never {
@@ -485,7 +488,7 @@ fn bindings(x: NeverBundle) {
485488
ref _a => {}
486489
}
487490
match *ref_opt_never {
488-
//[normal]~^ ERROR non-exhaustive
491+
//[normal,min_exh_pats]~^ ERROR non-exhaustive
489492
None => {}
490493
}
491494
match *ref_opt_never {
@@ -533,7 +536,7 @@ fn bindings(x: NeverBundle) {
533536

534537
let ref_res_never: &Result<!, !> = &x.result_never;
535538
match *ref_res_never {
536-
//[normal]~^ ERROR non-exhaustive
539+
//[normal,min_exh_pats]~^ ERROR non-exhaustive
537540
// useful, reachable
538541
Ok(_) => {}
539542
}
@@ -544,7 +547,7 @@ fn bindings(x: NeverBundle) {
544547
_ => {}
545548
}
546549
match *ref_res_never {
547-
//[normal]~^ ERROR non-exhaustive
550+
//[normal,min_exh_pats]~^ ERROR non-exhaustive
548551
// useful, !reachable
549552
Ok(_a) => {}
550553
}
@@ -563,7 +566,7 @@ fn bindings(x: NeverBundle) {
563566

564567
let ref_tuple_half_never: &(u32, !) = &x.tuple_half_never;
565568
match *ref_tuple_half_never {}
566-
//[normal]~^ ERROR non-empty
569+
//[normal,min_exh_pats]~^ ERROR non-empty
567570
match *ref_tuple_half_never {
568571
// useful, reachable
569572
(_, _) => {}
@@ -614,6 +617,7 @@ fn guards_and_validity(x: NeverBundle) {
614617
// useful, reachable
615618
_ => {}
616619
}
620+
617621
// Now the madness commences. The guard caused a load of the value thus asserting validity. So
618622
// there's no invalid value for `_` to catch. So the second pattern is unreachable despite the
619623
// guard not being taken.
@@ -629,7 +633,7 @@ fn guards_and_validity(x: NeverBundle) {
629633
_a if false => {}
630634
}
631635
match ref_never {
632-
//[normal]~^ ERROR non-exhaustive
636+
//[normal,min_exh_pats]~^ ERROR non-exhaustive
633637
// useful, !reachable
634638
&_a if false => {}
635639
}
@@ -657,7 +661,7 @@ fn diagnostics_subtlety(x: NeverBundle) {
657661
// Regression test for diagnostics: don't report `Some(Ok(_))` and `Some(Err(_))`.
658662
let x: &Option<Result<!, !>> = &None;
659663
match *x {
660-
//[normal]~^ ERROR `Some(_)` not covered
664+
//[normal,min_exh_pats]~^ ERROR `Some(_)` not covered
661665
None => {}
662666
}
663667
}

0 commit comments

Comments
 (0)
Please sign in to comment.