blob: cd2d003664ac21aa8d5c97e22199d9c16f962d53 [file] [log] [blame] [edit]
//@ compile-flags:-ldylib:+as-needed=foo -lstatic=bar -Zunstable-options
#[link(name = "foo")]
#[link(
name = "bar",
kind = "static",
modifiers = "+whole-archive,-whole-archive",
//~^ ERROR multiple `whole-archive` modifiers in a single `modifiers` argument
modifiers = "+bundle"
//~^ ERROR multiple `modifiers` arguments in a single `#[link]` attribute
)]
extern "C" {}
//~^ ERROR overriding linking modifiers from command line is not supported
//~| ERROR overriding linking modifiers from command line is not supported
fn main() {}