rust/tests/ui/issues/issue-30123.stderr

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

13 lines
569 B
Plaintext
Raw Normal View History

2023-01-06 13:21:47 -06:00
error[E0599]: no function or associated item named `new_undirected` found for struct `issue_30123_aux::Graph<i32, i32>` in the current scope
2018-12-07 12:15:36 -06:00
--> $DIR/issue-30123.rs:7:33
2018-08-08 07:28:26 -05:00
|
LL | let ug = Graph::<i32, i32>::new_undirected();
2022-12-13 18:57:34 -06:00
| ^^^^^^^^^^^^^^ function or associated item not found in `Graph<i32, i32>`
|
2021-05-25 09:55:30 -05:00
= note: the function or associated item was found for
- `issue_30123_aux::Graph<N, E, Undirected>`
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0599`.