about summary refs log tree commit diff
path: root/src/test/ui/native-library-link-flags/mix-bundle-and-whole-archive-link-attr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/native-library-link-flags/mix-bundle-and-whole-archive-link-attr.rs')
-rw-r--r--src/test/ui/native-library-link-flags/mix-bundle-and-whole-archive-link-attr.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/ui/native-library-link-flags/mix-bundle-and-whole-archive-link-attr.rs b/src/test/ui/native-library-link-flags/mix-bundle-and-whole-archive-link-attr.rs
deleted file mode 100644
index 066048795c8..00000000000
--- a/src/test/ui/native-library-link-flags/mix-bundle-and-whole-archive-link-attr.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-// compile-flags: -Zunstable-options --crate-type rlib
-// build-fail
-// error-pattern: the linking modifiers `+bundle` and `+whole-archive` are not compatible with each other when generating rlibs
-
-#[link(name = "mylib", kind = "static", modifiers = "+bundle,+whole-archive")]
-extern "C" { }
-
-fn main() { }