mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 19:47:38 +00:00

- duplicates of crateresolve1 are used in a couple error-codes tests - also fix the note in crateresolve1 to link to these other duplicates, now that E0523 has been merged into E0464
14 lines
355 B
Rust
14 lines
355 B
Rust
//@ check-fail
|
|
|
|
//@ aux-build:crateresolve2-1.rs
|
|
//@ aux-build:crateresolve2-2.rs
|
|
//@ aux-build:crateresolve2-3.rs
|
|
|
|
//@ normalize-stderr: "crateresolve2\..+/auxiliary/" -> "crateresolve2/auxiliary/"
|
|
//@ normalize-stderr: "\\\?\\" -> ""
|
|
|
|
extern crate crateresolve2;
|
|
//~^ ERROR multiple candidates for `rmeta` dependency `crateresolve2` found
|
|
|
|
fn main() {}
|