about summary refs log tree commit diff
path: root/tests/ui/issues/issue-30123.rs
blob: f6511b5f290d252e1f37241a863bba58310f9bb3 (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
}