mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
12 lines
285 B
Rust
12 lines
285 B
Rust
//@ aux-build:found-staticlib.rs
|
|
|
|
//@ normalize-stderr: "\.nll/" -> "/"
|
|
//@ normalize-stderr: "\\\?\\" -> ""
|
|
//@ normalize-stderr: "(lib)?found_staticlib\.[a-z]+" -> "libfound_staticlib.somelib"
|
|
|
|
extern crate found_staticlib; //~ ERROR E0462
|
|
|
|
fn main() {
|
|
found_staticlib::foo();
|
|
}
|