mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 17:18:32 +03:00
Incorporated suggested changes
This commit is contained in:
@@ -1217,7 +1217,7 @@ fn main() {
|
||||
```compile_fail,E0284
|
||||
fn foo() -> Result<bool, ()> {
|
||||
let results = [Ok(true), Ok(false), Err(())].iter().cloned();
|
||||
let v : Vec<bool> = results.collect()?;
|
||||
let v: Vec<bool> = results.collect()?;
|
||||
// Do things with v...
|
||||
Ok(true)
|
||||
}
|
||||
@@ -1228,7 +1228,7 @@ fn foo() -> Result<bool, ()> {
|
||||
`FromIterator<Result<bool, ()>>`. On the other hand, the
|
||||
`?` operator can accept any type implementing `Try`.
|
||||
|
||||
The user of this code probably wants `collect()` to return a
|
||||
The author of this code probably wants `collect()` to return a
|
||||
`Result<Vec<bool>, ()>`, but the compiler can't be sure
|
||||
that there isn't another type `T` implementing both `Try` and
|
||||
`FromIterator<Result<bool, ()>>` in scope such that
|
||||
@@ -1241,16 +1241,15 @@ fn foo() -> Result<bool, ()> {
|
||||
fn foo() -> Result<bool, ()> {
|
||||
let results = [Ok(true), Ok(false), Err(())].iter().cloned();
|
||||
let v = {
|
||||
let temp : Result<Vec<bool>, ()> = results.collect();
|
||||
let temp: Result<Vec<bool>, ()> = results.collect();
|
||||
temp?
|
||||
};
|
||||
// Do things with v...
|
||||
Ok(true)
|
||||
}
|
||||
```
|
||||
Note that the type of `v` can now be inferred from the type of `temp`
|
||||
|
||||
|
||||
Note that the type of `v` can now be inferred from the type of `temp`.
|
||||
"##,
|
||||
|
||||
E0308: r##"
|
||||
|
||||
@@ -12,3 +12,4 @@ LL | trait Foo: Iterator<Item = i32> {}
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0284`.
|
||||
|
||||
@@ -6,3 +6,4 @@ LL | let x: isize = Foo::bar();
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0284`.
|
||||
|
||||
@@ -6,3 +6,4 @@ LL | self.input_stream(&mut stream);
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0284`.
|
||||
|
||||
@@ -6,3 +6,4 @@ LL | l.iter().map(f).collect()?
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0284`.
|
||||
|
||||
Reference in New Issue
Block a user