-
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 #82136 - edward-shen:mismatched-subst-and-hir, r=lcnr
Fix ICE: Use delay_span_bug for mismatched subst/hir arg Fixes #82126.
- Loading branch information
Showing
3 changed files
with
72 additions
and
7 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
25 changes: 25 additions & 0 deletions
25
src/test/ui/borrowck/issue-82126-mismatched-subst-and-hir.rs
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,25 @@ | ||
// Regression test for #82126. Checks that mismatched lifetimes and types are | ||
// properly handled. | ||
|
||
// edition:2018 | ||
|
||
use std::sync::Mutex; | ||
|
||
struct MarketMultiplier {} | ||
|
||
impl MarketMultiplier { | ||
fn buy(&mut self) -> &mut usize { | ||
todo!() | ||
} | ||
} | ||
|
||
async fn buy_lock(generator: &Mutex<MarketMultiplier>) -> LockedMarket<'_> { | ||
//~^ ERROR this struct takes 0 lifetime arguments but 1 lifetime argument was supplied | ||
//~^^ ERROR this struct takes 1 type argument but 0 type arguments were supplied | ||
LockedMarket(generator.lock().unwrap().buy()) | ||
//~^ ERROR cannot return value referencing temporary value | ||
} | ||
|
||
struct LockedMarket<T>(T); | ||
|
||
fn main() {} |
43 changes: 43 additions & 0 deletions
43
src/test/ui/borrowck/issue-82126-mismatched-subst-and-hir.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,43 @@ | ||
error[E0107]: this struct takes 0 lifetime arguments but 1 lifetime argument was supplied | ||
--> $DIR/issue-82126-mismatched-subst-and-hir.rs:16:59 | ||
| | ||
LL | async fn buy_lock(generator: &Mutex<MarketMultiplier>) -> LockedMarket<'_> { | ||
| ^^^^^^^^^^^^---- help: remove these generics | ||
| | | ||
| expected 0 lifetime arguments | ||
| | ||
note: struct defined here, with 0 lifetime parameters | ||
--> $DIR/issue-82126-mismatched-subst-and-hir.rs:23:8 | ||
| | ||
LL | struct LockedMarket<T>(T); | ||
| ^^^^^^^^^^^^ | ||
|
||
error[E0107]: this struct takes 1 type argument but 0 type arguments were supplied | ||
--> $DIR/issue-82126-mismatched-subst-and-hir.rs:16:59 | ||
| | ||
LL | async fn buy_lock(generator: &Mutex<MarketMultiplier>) -> LockedMarket<'_> { | ||
| ^^^^^^^^^^^^ expected 1 type argument | ||
| | ||
note: struct defined here, with 1 type parameter: `T` | ||
--> $DIR/issue-82126-mismatched-subst-and-hir.rs:23:8 | ||
| | ||
LL | struct LockedMarket<T>(T); | ||
| ^^^^^^^^^^^^ - | ||
help: add missing type argument | ||
| | ||
LL | async fn buy_lock(generator: &Mutex<MarketMultiplier>) -> LockedMarket<'_, T> { | ||
| ^^^ | ||
|
||
error[E0515]: cannot return value referencing temporary value | ||
--> $DIR/issue-82126-mismatched-subst-and-hir.rs:19:5 | ||
| | ||
LL | LockedMarket(generator.lock().unwrap().buy()) | ||
| ^^^^^^^^^^^^^-------------------------^^^^^^^ | ||
| | | | ||
| | temporary value created here | ||
| returns a value referencing data owned by the current function | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
Some errors have detailed explanations: E0107, E0515. | ||
For more information about an error, try `rustc --explain E0107`. |