mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
9 lines
236 B
Rust
9 lines
236 B
Rust
|
// no need to create a new aux file, we can use an existing.
|
||
|
// aux-build: crateresolve1-1.rs
|
||
|
|
||
|
// set same metadata as `crateresolve1`
|
||
|
#![crate_name = "crateresolve1"]
|
||
|
#![crate_type = "lib"]
|
||
|
|
||
|
extern crate crateresolve1; //~ ERROR E0519
|