rust/src/test/ui/issues/issue-30123.stderr

12 lines
571 B
Plaintext
Raw Normal View History

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();
2019-03-10 23:20:15 +00:00
| ^^^^^^^^^^^^^^ function or associated item not found in `issue_30123_aux::Graph<i32, i32>`
|
= 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`.