]> git.lizzy.rs Git - rust.git/blob - tests/incremental/link_order/main.rs
Rollup merge of #106644 - alexcrichton:update-wasi-toolchain, r=cuviper
[rust.git] / tests / incremental / link_order / main.rs
1 // aux-build:my_lib.rs
2 // error-pattern: error: linking with
3 // revisions:cfail1 cfail2
4 // compile-flags:-Z query-dep-graph
5
6 // Tests that re-ordering the `-l` arguments used
7 // when compiling an external dependency does not lead to
8 // an 'unstable fingerprint' error.
9
10 extern crate my_lib;
11
12 fn main() {}