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

error[E0459]: #[link(...)] specified without `name = "foo"`
  --> $DIR/E0458.rs:11:1
   |
LL | #[link(kind = "wonderful_unicorn")] extern {} //~ ERROR E0458
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `name` argument

error: aborting due to 2 previous errors

Some errors occurred: E0458, E0459.
For more information about an error, try `rustc --explain E0458`.