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 19:21:47 +00: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 18:15:36 +00:00
--> $DIR/issue-30123.rs:7:33
2018-08-08 12:28:26 +00:00
|
LL | let ug = Graph::<i32, i32>::new_undirected();
2022-12-14 00:57:34 +00:00
| ^^^^^^^^^^^^^^ function or associated item not found in `Graph<i32, i32>`
|
2021-05-25 14:55:30 +00:00
= note: the function or associated item was found for
- `issue_30123_aux::Graph<N, E, Undirected>`
2018-08-08 12:28:26 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0599`.