rust/tests/ui/issues/issue-30123.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
227 B
Rust
Raw Normal View History

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();
//~^ ERROR no function or associated item named `new_undirected` found
2016-01-19 20:48:11 +00:00
}