mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00
12 lines
314 B
Rust
12 lines
314 B
Rust
//@ aux-build:found-staticlib.rs
|
|
|
|
//@ normalize-stderr: "E0462\..+/auxiliary/" -> "E0462/auxiliary/"
|
|
//@ normalize-stderr: "\\\?\\" -> ""
|
|
//@ normalize-stderr: "(lib)?found_staticlib\.[a-z]+" -> "libfound_staticlib.somelib"
|
|
|
|
extern crate found_staticlib; //~ ERROR E0462
|
|
|
|
fn main() {
|
|
found_staticlib::foo();
|
|
}
|