summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/suggest-deferences/issue-39029.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/traits/suggest-deferences/issue-39029.stderr')
-rw-r--r--src/test/ui/traits/suggest-deferences/issue-39029.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/traits/suggest-deferences/issue-39029.stderr b/src/test/ui/traits/suggest-deferences/issue-39029.stderr
new file mode 100644
index 000000000..5c324cd38
--- /dev/null
+++ b/src/test/ui/traits/suggest-deferences/issue-39029.stderr
@@ -0,0 +1,20 @@
+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`
+ | | help: consider dereferencing here: `&*bad`
+ | required by a bound introduced by this call
+ |
+ = note: required because of the requirements on the impl of `ToSocketAddrs` for `&NoToSocketAddrs`
+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`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.