summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/suggest-deferences/issue-39029.stderr
blob: eb2b88059d485e0059be5f736f5e26b96911421f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error[E0277]: the trait bound `NoToSocketAddrs: ToSocketAddrs` is not satisfied
  --> $DIR/issue-39029.rs:16:37
   |
LL |     let _errors = TcpListener::bind(&bad);
   |                   ----------------- ^^^^ the trait `ToSocketAddrs` is not implemented for `NoToSocketAddrs`
   |                   |
   |                   required by a bound introduced by this call
   |
   = note: required for `&NoToSocketAddrs` to implement `ToSocketAddrs`
note: required by a bound in `TcpListener::bind`
  --> $SRC_DIR/std/src/net/tcp.rs:LL:COL
   |
LL |     pub fn bind<A: ToSocketAddrs>(addr: A) -> io::Result<TcpListener> {
   |                    ^^^^^^^^^^^^^ required by this bound in `TcpListener::bind`
help: consider dereferencing here
   |
LL |     let _errors = TcpListener::bind(&*bad);
   |                                      +

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.