Skip to content

Commit 6212310

Browse files
authored
Rollup merge of rust-lang#60809 - jethrogb:jb/nll-faq, r=pnkfelix
Add FAQ for NLL migration r? @pnkfelix cc @oli-obk @davidtwco @Centril Since you've provided feedback on the warning wording before.
2 parents 9078815 + 33fb1c5 commit 6212310

20 files changed

+59
-2
lines changed

src/librustc_mir/borrow_check/mod.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -439,10 +439,11 @@ fn downgrade_if_error(diag: &mut Diagnostic) {
439439
diag.warn(
440440
"this error has been downgraded to a warning for backwards \
441441
compatibility with previous releases",
442-
);
443-
diag.warn(
442+
).warn(
444443
"this represents potential undefined behavior in your code and \
445444
this warning will become a hard error in the future",
445+
).note(
446+
"for more information, try `rustc --explain E0729`"
446447
);
447448
}
448449
}

src/librustc_mir/error_codes.rs

+32
Original file line numberDiff line numberDiff line change
@@ -2424,6 +2424,38 @@ const fn foo() -> impl T {
24242424
```
24252425
"##,
24262426

2427+
E0729: r##"
2428+
Support for Non-Lexical Lifetimes (NLL) has been included in the Rust compiler
2429+
since 1.31, and has been enabled on the 2015 edition since 1.36. The new borrow
2430+
checker for NLL uncovered some bugs in the old borrow checker, which in some
2431+
cases allowed unsound code to compile, resulting in memory safety issues.
2432+
2433+
### What do I do?
2434+
2435+
Change your code so the warning does no longer trigger. For backwards
2436+
compatibility, this unsound code may still compile (with a warning) right now.
2437+
However, at some point in the future, the compiler will no longer accept this
2438+
code and will throw a hard error.
2439+
2440+
### Shouldn't you fix the old borrow checker?
2441+
2442+
The old borrow checker has known soundness issues that are basically impossible
2443+
to fix. The new NLL-based borrow checker is the fix.
2444+
2445+
### Can I turn these warnings into errors by denying a lint?
2446+
2447+
No.
2448+
2449+
### When are these warnings going to turn into errors?
2450+
2451+
No formal timeline for turning the warnings into errors has been set. See
2452+
[GitHub issue 58781](https://github.com/rust-lang/rust/issues/58781) for more
2453+
information.
2454+
2455+
### Why do I get this message with code that doesn't involve borrowing?
2456+
2457+
There are some known bugs that trigger this message.
2458+
"##,
24272459
}
24282460

24292461
register_diagnostics! {

src/test/ui/borrowck/borrowck-anon-fields-variant.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ LL | *a += 1;
1212
|
1313
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
1414
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
15+
= note: for more information, try `rustc --explain E0729`
1516

1617
error[E0503]: cannot use `y` because it was mutably borrowed
1718
--> $DIR/borrowck-anon-fields-variant.rs:37:7

src/test/ui/borrowck/borrowck-describe-lvalue.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,7 @@ LL | drop(x);
341341
|
342342
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
343343
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
344+
= note: for more information, try `rustc --explain E0729`
344345

345346
warning[E0502]: cannot borrow `*block.current` as immutable because it is also borrowed as mutable
346347
--> $DIR/borrowck-describe-lvalue.rs:227:33
@@ -355,6 +356,7 @@ LL | drop(x);
355356
|
356357
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
357358
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
359+
= note: for more information, try `rustc --explain E0729`
358360

359361
error[E0382]: use of moved value: `x`
360362
--> $DIR/borrowck-describe-lvalue.rs:282:22

src/test/ui/borrowck/borrowck-migrate-to-nll.edition.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ LL | (|| { let bar = foo; bar.take() })();
66
|
77
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
88
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
9+
= note: for more information, try `rustc --explain E0729`
910

src/test/ui/borrowck/borrowck-migrate-to-nll.zflag.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ LL | (|| { let bar = foo; bar.take() })();
66
|
77
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
88
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
9+
= note: for more information, try `rustc --explain E0729`
910

src/test/ui/borrowck/borrowck-mutate-in-guard.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ LL | Enum::A(_) if { x = Enum::B(false); false } => 1,
2828
|
2929
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
3030
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
31+
= note: for more information, try `rustc --explain E0729`
3132

3233
warning[E0510]: cannot mutably borrow `x` in match guard
3334
--> $DIR/borrowck-mutate-in-guard.rs:15:33
@@ -40,6 +41,7 @@ LL | Enum::A(_) if { let y = &mut x; *y = Enum::B(false); false } => 1,
4041
|
4142
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
4243
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
44+
= note: for more information, try `rustc --explain E0729`
4345

4446
error: aborting due to 3 previous errors
4547

src/test/ui/consts/const_let_refutable.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ LL | a + b
2121
|
2222
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
2323
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
24+
= note: for more information, try `rustc --explain E0729`
2425

2526
warning[E0381]: use of possibly uninitialized variable: `b`
2627
--> $DIR/const_let_refutable.rs:4:9
@@ -30,6 +31,7 @@ LL | a + b
3031
|
3132
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
3233
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
34+
= note: for more information, try `rustc --explain E0729`
3335

3436
error: aborting due to 2 previous errors
3537

src/test/ui/consts/min_const_fn/min_const_fn.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ LL | const fn no_dyn_trait_ret() -> &'static dyn std::fmt::Debug { &() }
297297
|
298298
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
299299
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
300+
= note: for more information, try `rustc --explain E0729`
300301

301302
error[E0723]: trait bounds other than `Sized` on const fn parameters are unstable
302303
--> $DIR/min_const_fn.rs:144:41

src/test/ui/consts/min_const_fn/min_const_fn_dyn.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ LL | const fn no_inner_dyn_trait_ret() -> Hide { Hide(HasDyn { field: &0 }) }
2727
|
2828
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
2929
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
30+
= note: for more information, try `rustc --explain E0729`
3031

3132
error: aborting due to 2 previous errors
3233

src/test/ui/empty/empty-never-array.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ LL | u
1919
|
2020
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
2121
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
22+
= note: for more information, try `rustc --explain E0729`
2223

2324
error: aborting due to previous error
2425

src/test/ui/feature-gates/feature-gate-nll.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ LL | m;
1111
|
1212
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
1313
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
14+
= note: for more information, try `rustc --explain E0729`
1415

1516
error: compilation successful
1617
--> $DIR/feature-gate-nll.rs:10:1

src/test/ui/issues/issue-15381.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ LL | println!("y={}", y);
1212
|
1313
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
1414
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
15+
= note: for more information, try `rustc --explain E0729`
1516

1617
error: aborting due to previous error
1718

src/test/ui/issues/issue-40510-1.migrate.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ LL | &mut x
1010
= note: ...therefore, they cannot allow references to captured variables to escape
1111
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
1212
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
13+
= note: for more information, try `rustc --explain E0729`
1314

1415
error: compilation successful
1516
--> $DIR/issue-40510-1.rs:20:1

src/test/ui/issues/issue-40510-3.migrate.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ LL | | }
1212
= note: ...therefore, they cannot allow references to captured variables to escape
1313
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
1414
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
15+
= note: for more information, try `rustc --explain E0729`
1516

1617
error: compilation successful
1718
--> $DIR/issue-40510-3.rs:22:1

src/test/ui/issues/issue-45696-scribble-on-boxed-borrow.migrate.stderr

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ LL | }
1111
|
1212
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
1313
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
14+
= note: for more information, try `rustc --explain E0729`
1415

1516
warning[E0713]: borrow may still be in use when destructor runs
1617
--> $DIR/issue-45696-scribble-on-boxed-borrow.rs:62:5
@@ -25,6 +26,7 @@ LL | }
2526
|
2627
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
2728
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
29+
= note: for more information, try `rustc --explain E0729`
2830

2931
warning[E0713]: borrow may still be in use when destructor runs
3032
--> $DIR/issue-45696-scribble-on-boxed-borrow.rs:73:5
@@ -39,6 +41,7 @@ LL | }
3941
|
4042
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
4143
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
44+
= note: for more information, try `rustc --explain E0729`
4245

4346
error: compilation successful
4447
--> $DIR/issue-45696-scribble-on-boxed-borrow.rs:80:1

src/test/ui/issues/issue-49824.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ LL | | }
1515
= note: ...therefore, they cannot allow references to captured variables to escape
1616
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
1717
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
18+
= note: for more information, try `rustc --explain E0729`
1819

1920
error: compilation successful
2021
--> $DIR/issue-49824.rs:6:1

src/test/ui/pattern/pattern-bindings-after-at.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ LL | **z = None;
1818
|
1919
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
2020
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
21+
= note: for more information, try `rustc --explain E0729`
2122

2223
error: aborting due to previous error
2324

src/test/ui/recursion/recursive-types-are-not-uninhabited.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ LL | x
1212
|
1313
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
1414
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
15+
= note: for more information, try `rustc --explain E0729`
1516

1617
error: aborting due to previous error
1718

src/test/ui/thread-local-in-ctfe.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ LL | static C: &u32 = &A;
2020
|
2121
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
2222
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
23+
= note: for more information, try `rustc --explain E0729`
2324

2425
error[E0625]: thread-local statics cannot be accessed at compile-time
2526
--> $DIR/thread-local-in-ctfe.rs:15:16
@@ -43,6 +44,7 @@ LL | const E: &u32 = &A;
4344
|
4445
= warning: this error has been downgraded to a warning for backwards compatibility with previous releases
4546
= warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
47+
= note: for more information, try `rustc --explain E0729`
4648

4749
error[E0625]: thread-local statics cannot be accessed at compile-time
4850
--> $DIR/thread-local-in-ctfe.rs:25:5

0 commit comments

Comments
 (0)