rust/tests/ui/ufcs/bad-builder.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
752 B
Plaintext
Raw Normal View History

2024-02-19 21:01:35 -06:00
error[E0599]: no function or associated item named `mew` found for struct `Vec<Q>` in the current scope
--> $DIR/bad-builder.rs:2:15
|
LL | Vec::<Q>::mew()
2024-02-22 12:38:10 -06:00
| ^^^ function or associated item not found in `Vec<Q>`
2024-02-19 21:01:35 -06:00
|
note: if you're trying to build a new `Vec<Q>` consider using one of the following associated functions:
Vec::<T>::new
Vec::<T>::with_capacity
Vec::<T>::try_with_capacity
2024-02-19 21:01:35 -06:00
Vec::<T>::from_raw_parts
and 4 others
2024-02-19 21:01:35 -06:00
--> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
2024-02-22 12:38:10 -06:00
help: there is an associated function `new` with a similar name
|
LL | Vec::<Q>::new()
| ~~~
2024-02-19 21:01:35 -06:00
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0599`.