未验证 提交 c07b712d 编写于 作者: D David Wood

Simplify test.

Removes unnecessary type mismatch error from test that was hiding
borrow check error from NLL stderr.
上级 60c84604
error[E0308]: mismatched types error[E0621]: explicit lifetime required in the type of `cont`
--> $DIR/issue-13058.rs:36:11 --> $DIR/issue-13058.rs:24:21
| |
LL | check((3, 5)); 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 | {
| expected reference, found tuple LL | let cont_iter = cont.iter();
| help: consider borrowing here: `&(3, 5)` | ^^^^^^^^^^^ lifetime `'r` required
|
= note: expected type `&_`
found type `({integer}, {integer})`
error: aborting due to previous error 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`.
...@@ -33,6 +33,5 @@ fn check<'r, I: Iterator<Item=usize>, T: Itble<'r, usize, I>>(cont: &T) -> bool ...@@ -33,6 +33,5 @@ fn check<'r, I: Iterator<Item=usize>, T: Itble<'r, usize, I>>(cont: &T) -> bool
} }
fn main() { fn main() {
check((3, 5)); check(&(3, 5));
//~^ ERROR mismatched types
} }
...@@ -7,19 +7,6 @@ LL | { ...@@ -7,19 +7,6 @@ LL | {
LL | let cont_iter = cont.iter(); LL | let cont_iter = cont.iter();
| ^^^^ lifetime `'r` required | ^^^^ lifetime `'r` required
error[E0308]: mismatched types error: aborting due to previous error
--> $DIR/issue-13058.rs:36:11
|
LL | check((3, 5));
| ^^^^^^
| |
| expected reference, found tuple
| help: consider borrowing here: `&(3, 5)`
|
= note: expected type `&_`
found type `({integer}, {integer})`
error: aborting due to 2 previous errors
Some errors occurred: E0308, E0621. For more information about this error, try `rustc --explain E0621`.
For more information about an error, try `rustc --explain E0308`.
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册