blob: f839ee783b53e30a3d57dcb1c1e84f0e626efb67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// aux-build:found-staticlib.rs
// normalize-stderr-test: "\.nll/" -> "/"
// normalize-stderr-test: "\\\?\\" -> ""
// normalize-stderr-test: "(lib)?found_staticlib\.[a-z]+" -> "libfound_staticlib.somelib"
extern crate found_staticlib; //~ ERROR E0462
fn main() {
found_staticlib::foo();
}
|