mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
Rollup merge of #114166 - Enselic:libc-unavailable, r=Nilstrieb
Add regression test for resolving `--extern libc=test.rlib` Closes #26043 I could not find a test for this particular use case. The closest I got was [`tests/ui/imports/issue-37887.rs`](https://github.com/rust-lang/rust/blob/master/tests/ui/imports/issue-37887.rs), but that is a regression test for a different use case (see https://github.com/rust-lang/rust/issues/37887).
This commit is contained in:
commit
ddda3fa0b0
14
tests/ui/imports/resolve-other-libc.rs
Normal file
14
tests/ui/imports/resolve-other-libc.rs
Normal file
@ -0,0 +1,14 @@
|
||||
// Regression test for https://github.com/rust-lang/rust/issues/26043
|
||||
|
||||
// compile-flags: --extern libc=test.rlib
|
||||
|
||||
// The error shall NOT be something similar to the following, because it
|
||||
// indicates that `libc` was wrongly resolved to `libc` shipped with the
|
||||
// compiler:
|
||||
//
|
||||
// error[E0658]: use of unstable library feature 'rustc_private': \
|
||||
// this crate is being loaded from the sysroot
|
||||
//
|
||||
extern crate libc; //~ ERROR: extern location for libc does not exist: test.rlib
|
||||
|
||||
fn main() {}
|
8
tests/ui/imports/resolve-other-libc.stderr
Normal file
8
tests/ui/imports/resolve-other-libc.stderr
Normal file
@ -0,0 +1,8 @@
|
||||
error: extern location for libc does not exist: test.rlib
|
||||
--> $DIR/resolve-other-libc.rs:12:1
|
||||
|
|
||||
LL | extern crate libc;
|
||||
| ^^^^^^^^^^^^^^^^^^
|
||||
|
||||
error: aborting due to previous error
|
||||
|
Loading…
Reference in New Issue
Block a user