summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0464.rs
blob: 969115a7d9774162b0dcb22f8c7a66afb8c38e7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// aux-build:crateresolve1-1.rs
// aux-build:crateresolve1-2.rs
// aux-build:crateresolve1-3.rs

// normalize-stderr-test: "\.nll/" -> "/"
// normalize-stderr-test: "\\\?\\" -> ""
// normalize-stderr-test: "(lib)?crateresolve1-([123])\.[a-z]+" -> "libcrateresolve1-$2.somelib"

// NOTE: This test is duplicated from `src/test/ui/crate-loading/crateresolve1.rs`.

extern crate crateresolve1;
//~^ ERROR multiple matching crates for `crateresolve1`

fn main() {
}