Files
rust/tests/ui/link-native-libs/issue-43925.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
148 B
Rust
Raw Normal View History

#[link(name = "foo", cfg("rlib"))]
//~^ ERROR link cfg is unstable
//~| ERROR `cfg` predicate key must be an identifier
2020-09-01 17:12:52 -04:00
extern "C" {}
fn main() {}