mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
f926031ea5
When we have a resolution error when looking at a fully qualified path on a type, look for all associated functions on inherent impls that return `Self` and mention them to the user. Fix #69512.
15 lines
599 B
Plaintext
15 lines
599 B
Plaintext
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`.
|