2018-11-04 22:00:03 -06:00
|
|
|
// aux-build:issue-30123-aux.rs
|
2016-01-19 14:48:11 -06:00
|
|
|
|
|
|
|
extern crate issue_30123_aux;
|
|
|
|
use issue_30123_aux::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let ug = Graph::<i32, i32>::new_undirected();
|
2017-06-02 15:20:36 -05:00
|
|
|
//~^ ERROR no function or associated item named `new_undirected` found for type
|
2016-01-19 14:48:11 -06:00
|
|
|
}
|