]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/suggest-change-mut.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / suggestions / suggest-change-mut.stderr
1 error[E0277]: the trait bound `&T: std::io::Read` is not satisfied
2   --> $DIR/suggest-change-mut.rs:12:48
3    |
4 LL |         let mut stream_reader = BufReader::new(&stream);
5    |                                 -------------- ^^^^^^^ the trait `std::io::Read` is not implemented for `&T`
6    |                                 |
7    |                                 required by a bound introduced by this call
8    |
9 note: required by a bound in `BufReader::<R>::new`
10   --> $SRC_DIR/std/src/io/buffered/bufreader.rs:LL:COL
11 help: consider removing the leading `&`-reference
12    |
13 LL -         let mut stream_reader = BufReader::new(&stream);
14 LL +         let mut stream_reader = BufReader::new(stream);
15    |
16 help: consider introducing a `where` clause, but there might be an alternative better way to express this requirement
17    |
18 LL | fn issue_81421<T: Read + Write>(mut stream: T) where &T: std::io::Read {
19    |                                                +++++++++++++++++++++++
20 help: consider changing this borrow's mutability
21    |
22 LL |         let mut stream_reader = BufReader::new(&mut stream);
23    |                                                ~~~~
24
25 error[E0599]: the method `read_until` exists for struct `BufReader<&T>`, but its trait bounds were not satisfied
26   --> $DIR/suggest-change-mut.rs:16:23
27    |
28 LL |         stream_reader.read_until(b'\n', &mut buffer).expect("Reading into buffer failed");
29    |                       ^^^^^^^^^^ method cannot be called on `BufReader<&T>` due to unsatisfied trait bounds
30   --> $SRC_DIR/std/src/io/buffered/bufreader.rs:LL:COL
31    |
32    = note: doesn't satisfy `BufReader<&T>: BufRead`
33    |
34    = note: the following trait bounds were not satisfied:
35            `&T: std::io::Read`
36            which is required by `BufReader<&T>: BufRead`
37
38 error: aborting due to 2 previous errors
39
40 Some errors have detailed explanations: E0277, E0599.
41 For more information about an error, try `rustc --explain E0277`.