]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0458.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / error-codes / E0458.stderr
1 error[E0458]: unknown kind: `wonderful_unicorn`
2   --> $DIR/E0458.rs:11:1
3    |
4 LL | #[link(kind = "wonderful_unicorn")] extern {} //~ ERROR E0458
5    | ^^^^^^^--------------------------^^
6    |        |
7    |        unknown kind
8
9 error[E0459]: #[link(...)] specified without `name = "foo"`
10   --> $DIR/E0458.rs:11:1
11    |
12 LL | #[link(kind = "wonderful_unicorn")] extern {} //~ ERROR E0458
13    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `name` argument
14
15 error: aborting due to 2 previous errors
16
17 Some errors occurred: E0458, E0459.
18 For more information about an error, try `rustc --explain E0458`.