summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/fn-new-doesnt-exist.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/fn-new-doesnt-exist.stderr')
-rw-r--r--tests/ui/resolve/fn-new-doesnt-exist.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/resolve/fn-new-doesnt-exist.stderr b/tests/ui/resolve/fn-new-doesnt-exist.stderr
new file mode 100644
index 000000000..39adc0fde
--- /dev/null
+++ b/tests/ui/resolve/fn-new-doesnt-exist.stderr
@@ -0,0 +1,14 @@
+error[E0599]: no function or associated item named `new` found for struct `TcpStream` in the current scope
+ --> $DIR/fn-new-doesnt-exist.rs:4:28
+ |
+LL | let stream = TcpStream::new();
+ | ^^^ function or associated item not found in `TcpStream`
+ |
+note: if you're trying to build a new `TcpStream` consider using one of the following associated functions:
+ TcpStream::connect
+ TcpStream::connect_timeout
+ --> $SRC_DIR/std/src/net/tcp.rs:LL:COL
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0599`.