-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #114758 - fmease:fix-nice-re-err-ice-gci, r=cjgillot
Don't crash when reporting nice region errors for generic const items Fixes #114714.
- Loading branch information
Showing
4 changed files
with
36 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Test that we catch that the reference outlives the referent and we | ||
// successfully emit a diagnostic. Regression test for issue #114714. | ||
|
||
#![feature(generic_const_items)] | ||
#![allow(incomplete_features)] | ||
|
||
const Q<'a, 'b>: &'a &'b () = &&(); //~ ERROR reference has a longer lifetime than the data it references | ||
|
||
fn main() {} |
20 changes: 20 additions & 0 deletions
20
tests/ui/generic-const-items/reference-outlives-referent.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
error[E0491]: in type `&'a &'b ()`, reference has a longer lifetime than the data it references | ||
--> $DIR/reference-outlives-referent.rs:7:18 | ||
| | ||
LL | const Q<'a, 'b>: &'a &'b () = &&(); | ||
| ^^^^^^^^^^ | ||
| | ||
note: the pointer is valid for the lifetime `'a` as defined here | ||
--> $DIR/reference-outlives-referent.rs:7:9 | ||
| | ||
LL | const Q<'a, 'b>: &'a &'b () = &&(); | ||
| ^^ | ||
note: but the referenced data is only valid for the lifetime `'b` as defined here | ||
--> $DIR/reference-outlives-referent.rs:7:13 | ||
| | ||
LL | const Q<'a, 'b>: &'a &'b () = &&(); | ||
| ^^ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0491`. |