2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:crateresolve1-1.rs
|
|
|
|
//@ aux-build:crateresolve1-2.rs
|
|
|
|
//@ aux-build:crateresolve1-3.rs
|
2021-10-06 03:23:40 +00:00
|
|
|
|
2025-02-03 19:02:26 +00:00
|
|
|
//@ normalize-stderr: "crateresolve1\..+/auxiliary/" -> "crateresolve1/auxiliary/"
|
2024-12-25 11:12:17 +00:00
|
|
|
//@ normalize-stderr: "\\\?\\" -> ""
|
|
|
|
//@ normalize-stderr: "(lib)?crateresolve1-([123])\.[a-z]+" -> "libcrateresolve1-$2.somelib"
|
2012-04-06 06:57:45 +00:00
|
|
|
|
2025-02-03 19:02:26 +00:00
|
|
|
// NOTE: This test is duplicated at `tests/ui/error-codes/E0464.rs` and `E0523.rs`.
|
2021-10-06 20:01:43 +00:00
|
|
|
|
2014-02-14 18:10:06 +00:00
|
|
|
extern crate crateresolve1;
|
2022-12-22 07:21:43 +00:00
|
|
|
//~^ ERROR multiple candidates for `rlib` dependency `crateresolve1` found
|
2012-04-06 06:57:45 +00:00
|
|
|
|
2022-12-22 07:21:43 +00:00
|
|
|
fn main() {}
|