2018-11-05 04:00:03 +00:00
|
|
|
//@ aux-build:issue-30123-aux.rs
|
2016-01-19 20:48:11 +00:00
|
|
|
|
|
|
|
extern crate issue_30123_aux;
|
|
|
|
use issue_30123_aux::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let ug = Graph::<i32, i32>::new_undirected();
|
2020-01-08 08:05:31 -08:00
|
|
|
//~^ ERROR no function or associated item named `new_undirected` found
|
2016-01-19 20:48:11 +00:00
|
|
|
}
|