Skip to content

Commit ea98e42

Browse files
committed
rebase blessing
1 parent 8400cd0 commit ea98e42

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

compiler/rustc_hir_typeck/src/fallback.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ impl<'tcx> FnCtxt<'_, 'tcx> {
477477
behavior: DivergingFallbackBehavior,
478478
diverging_vids: &[ty::TyVid],
479479
) {
480-
let DivergingFallbackBehavior::FallbackToUnit = behavior else { return };
480+
let DivergingFallbackBehavior::ToUnit = behavior else { return };
481481

482482
// Fallback happens if and only if there are diverging variables
483483
if diverging_vids.is_empty() {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
warning: this function depends on never type fallback being `()`
2+
--> $DIR/never-type-fallback-breaking.rs:15:1
3+
|
4+
LL | fn m() {
5+
| ^^^^^^
6+
|
7+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
8+
= note: for more information, see issue #123748 <https://github.com/rust-lang/rust/issues/123748>
9+
= help: specify the types explicitly
10+
= note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default
11+
12+
warning: this function depends on never type fallback being `()`
13+
--> $DIR/never-type-fallback-breaking.rs:27:1
14+
|
15+
LL | fn q() -> Option<()> {
16+
| ^^^^^^^^^^^^^^^^^^^^
17+
|
18+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
19+
= note: for more information, see issue #123748 <https://github.com/rust-lang/rust/issues/123748>
20+
= help: specify the types explicitly
21+
22+
warning: 2 warnings emitted
23+

tests/ui/editions/never-type-fallback-breaking.e2024.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0277]: the trait bound `!: Default` is not satisfied
2-
--> $DIR/never-type-fallback-breaking.rs:17:17
2+
--> $DIR/never-type-fallback-breaking.rs:19:17
33
|
44
LL | true => Default::default(),
55
| ^^^^^^^^^^^^^^^^^^ the trait `Default` is not implemented for `!`
@@ -8,15 +8,15 @@ LL | true => Default::default(),
88
= help: did you intend to use the type `()` here instead?
99

1010
error[E0277]: the trait bound `!: Default` is not satisfied
11-
--> $DIR/never-type-fallback-breaking.rs:30:5
11+
--> $DIR/never-type-fallback-breaking.rs:34:5
1212
|
1313
LL | deserialize()?;
1414
| ^^^^^^^^^^^^^ the trait `Default` is not implemented for `!`
1515
|
1616
= note: this error might have been caused by changes to Rust's type-inference algorithm (see issue #48950 <https://github.com/rust-lang/rust/issues/48950> for more information)
1717
= help: did you intend to use the type `()` here instead?
1818
note: required by a bound in `deserialize`
19-
--> $DIR/never-type-fallback-breaking.rs:26:23
19+
--> $DIR/never-type-fallback-breaking.rs:30:23
2020
|
2121
LL | fn deserialize<T: Default>() -> Option<T> {
2222
| ^^^^^^^ required by this bound in `deserialize`

tests/ui/editions/never-type-fallback-breaking.rs

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ fn main() {
1313
}
1414

1515
fn m() {
16+
//[e2021]~^ this function depends on never type fallback being `()`
17+
//[e2021]~| this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
1618
let x = match true {
1719
true => Default::default(),
1820
//[e2024]~^ error: the trait bound `!: Default` is not satisfied
@@ -23,6 +25,8 @@ fn m() {
2325
}
2426

2527
fn q() -> Option<()> {
28+
//[e2021]~^ this function depends on never type fallback being `()`
29+
//[e2021]~| this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2630
fn deserialize<T: Default>() -> Option<T> {
2731
Some(T::default())
2832
}

0 commit comments

Comments
 (0)