You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of rust-lang#132933 - compiler-errors:never-lint-arg-bug, r=WaffleLapkin
Make sure that we suggest turbofishing the right type arg for never suggestion
I had a bug where rust would suggest the wrong arg to turbofish `()` if there were any early-bound lifetimes...
r? WaffleLapkin
Copy file name to clipboardexpand all lines: tests/ui/editions/never-type-fallback-breaking.e2021.stderr
+24-5
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
warning: this function depends on never type fallback being `()`
2
-
--> $DIR/never-type-fallback-breaking.rs:15:1
2
+
--> $DIR/never-type-fallback-breaking.rs:17:1
3
3
|
4
4
LL | fn m() {
5
5
| ^^^^^^
@@ -8,7 +8,7 @@ LL | fn m() {
8
8
= note: for more information, see issue #123748 <https://github.com/rust-lang/rust/issues/123748>
9
9
= help: specify the types explicitly
10
10
note: in edition 2024, the requirement `!: Default` will fail
11
-
--> $DIR/never-type-fallback-breaking.rs:19:17
11
+
--> $DIR/never-type-fallback-breaking.rs:21:17
12
12
|
13
13
LL | true => Default::default(),
14
14
| ^^^^^^^^^^^^^^^^^^
@@ -19,7 +19,7 @@ LL | let x: () = match true {
19
19
| ++++
20
20
21
21
warning: this function depends on never type fallback being `()`
22
-
--> $DIR/never-type-fallback-breaking.rs:27:1
22
+
--> $DIR/never-type-fallback-breaking.rs:29:1
23
23
|
24
24
LL | fn q() -> Option<()> {
25
25
| ^^^^^^^^^^^^^^^^^^^^
@@ -28,7 +28,7 @@ LL | fn q() -> Option<()> {
28
28
= note: for more information, see issue #123748 <https://github.com/rust-lang/rust/issues/123748>
29
29
= help: specify the types explicitly
30
30
note: in edition 2024, the requirement `!: Default` will fail
31
-
--> $DIR/never-type-fallback-breaking.rs:34:5
31
+
--> $DIR/never-type-fallback-breaking.rs:36:5
32
32
|
33
33
LL | deserialize()?;
34
34
| ^^^^^^^^^^^^^
@@ -37,5 +37,24 @@ help: use `()` annotations to avoid fallback changes
37
37
LL | deserialize::<()>()?;
38
38
| ++++++
39
39
40
-
warning: 2 warnings emitted
40
+
warning: this function depends on never type fallback being `()`
41
+
--> $DIR/never-type-fallback-breaking.rs:46:1
42
+
|
43
+
LL | fn meow() -> Result<(), ()> {
44
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
45
+
|
46
+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
47
+
= note: for more information, see issue #123748 <https://github.com/rust-lang/rust/issues/123748>
48
+
= help: specify the types explicitly
49
+
note: in edition 2024, the requirement `(): From<!>` will fail
50
+
--> $DIR/never-type-fallback-breaking.rs:49:5
51
+
|
52
+
LL | help(1)?;
53
+
| ^^^^^^^
54
+
help: use `()` annotations to avoid fallback changes
= help: did you intend to use the type `()` here instead?
9
9
10
10
error[E0277]: the trait bound `!: Default` is not satisfied
11
-
--> $DIR/never-type-fallback-breaking.rs:34:5
11
+
--> $DIR/never-type-fallback-breaking.rs:36:5
12
12
|
13
13
LL | deserialize()?;
14
14
| ^^^^^^^^^^^^^ the trait `Default` is not implemented for `!`
15
15
|
16
16
= 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)
17
17
= help: did you intend to use the type `()` here instead?
18
18
note: required by a bound in `deserialize`
19
-
--> $DIR/never-type-fallback-breaking.rs:30:23
19
+
--> $DIR/never-type-fallback-breaking.rs:32:23
20
20
|
21
21
LL | fn deserialize<T: Default>() -> Option<T> {
22
22
| ^^^^^^^ required by this bound in `deserialize`
23
23
24
-
error: aborting due to 2 previous errors
24
+
error[E0277]: the trait bound `(): From<!>` is not satisfied
25
+
--> $DIR/never-type-fallback-breaking.rs:49:5
26
+
|
27
+
LL | help(1)?;
28
+
| ^^^^^^^ the trait `From<!>` is not implemented for `()`
29
+
|
30
+
= help: the following other types implement trait `From<T>`:
0 commit comments