summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-30123.rs
blob: 705355d91bf3cfb68d63922c63493c862406acb3 (plain)
1
2
3
4
5
6
7
8
9
// aux-build:issue-30123-aux.rs

extern crate issue_30123_aux;
use issue_30123_aux::*;

fn main() {
    let ug = Graph::<i32, i32>::new_undirected();
    //~^ ERROR no function or associated item named `new_undirected` found
}