8 lines
165 B
Rust
8 lines
165 B
Rust
|
// compile-flags: -l foo:bar -l foo:baz
|
||
|
// error-pattern: multiple renamings were specified for library
|
||
|
|
||
|
#![crate_type = "lib"]
|
||
|
|
||
|
#[link(name = "foo")]
|
||
|
extern "C" {}
|