summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0458.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0458.stderr')
-rw-r--r--src/test/ui/error-codes/E0458.stderr16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/error-codes/E0458.stderr b/src/test/ui/error-codes/E0458.stderr
deleted file mode 100644
index e641bba54..000000000
--- a/src/test/ui/error-codes/E0458.stderr
+++ /dev/null
@@ -1,16 +0,0 @@
-error[E0458]: unknown link kind `wonderful_unicorn`, expected one of: static, dylib, framework, raw-dylib
- --> $DIR/E0458.rs:1:15
- |
-LL | #[link(kind = "wonderful_unicorn")] extern "C" {}
- | ^^^^^^^^^^^^^^^^^^^ unknown link kind
-
-error[E0459]: `#[link]` attribute requires a `name = "string"` argument
- --> $DIR/E0458.rs:1:1
- |
-LL | #[link(kind = "wonderful_unicorn")] extern "C" {}
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `name` argument
-
-error: aborting due to 2 previous errors
-
-Some errors have detailed explanations: E0458, E0459.
-For more information about an error, try `rustc --explain E0458`.