-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 #54853 - davidtwco:issue-52663-missing-lifetime-sugge…
…stion-test, r=nikomatsakis Remove unneccessary error from test, revealing NLL error. Part of #52663. Removes unnecessary type mismatch error from test that was hiding borrow check error from NLL stderr. r? @nikomatsakis
- Loading branch information
Showing
3 changed files
with
11 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
error[E0308]: mismatched types | ||
--> $DIR/issue-13058.rs:36:11 | ||
error[E0621]: explicit lifetime required in the type of `cont` | ||
--> $DIR/issue-13058.rs:24:21 | ||
| | ||
LL | check((3, 5)); | ||
| ^^^^^^ | ||
| | | ||
| expected reference, found tuple | ||
| help: consider borrowing here: `&(3, 5)` | ||
| | ||
= note: expected type `&_` | ||
found type `({integer}, {integer})` | ||
LL | fn check<'r, I: Iterator<Item=usize>, T: Itble<'r, usize, I>>(cont: &T) -> bool | ||
| -- help: add explicit lifetime `'r` to the type of `cont`: `&'r T` | ||
LL | { | ||
LL | let cont_iter = cont.iter(); | ||
| ^^^^^^^^^^^ lifetime `'r` required | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0308`. | ||
For more information about this error, try `rustc --explain E0621`. |
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