summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0458.stderr
blob: 51f7764aaf283412bb3231fe8820d0ba57435b5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0458]: unknown kind: `wonderful_unicorn`
  --> $DIR/E0458.rs:1:8
   |
LL | #[link(kind = "wonderful_unicorn")] extern {}
   | -------^^^^^^^^^^^^^^^^^^^^^^^^^^--
   |        |
   |        unknown kind

error[E0459]: `#[link(...)]` specified without `name = "foo"`
  --> $DIR/E0458.rs:1:1
   |
LL | #[link(kind = "wonderful_unicorn")] extern {}
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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`.