mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
10 lines
232 B
Rust
10 lines
232 B
Rust
//@ 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 associated function or constant named `new_undirected` found
|
|
}
|