mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
13 lines
309 B
Rust
13 lines
309 B
Rust
//@ aux-build:my_lib.rs
|
|
//@ error-pattern: error: linking with
|
|
//@ revisions:cfail1 cfail2
|
|
//@ compile-flags:-Z query-dep-graph
|
|
|
|
// Tests that re-ordering the `-l` arguments used
|
|
// when compiling an external dependency does not lead to
|
|
// an 'unstable fingerprint' error.
|
|
|
|
extern crate my_lib;
|
|
|
|
fn main() {}
|