]> git.lizzy.rs Git - rust.git/blob - src/librustc_error_codes/error_codes/E0458.md
Auto merge of #66396 - smmalis37:pythontest, r=alexcrichton
[rust.git] / src / librustc_error_codes / error_codes / E0458.md
1 An unknown "kind" was specified for a link attribute. Erroneous code example:
2
3 ```ignore (cannot-test-this-because-rustdoc-stops-compile-fail-before-codegen)
4 #[link(kind = "wonderful_unicorn")] extern {}
5 // error: unknown kind: `wonderful_unicorn`
6 ```
7
8 Please specify a valid "kind" value, from one of the following:
9
10 * static
11 * dylib
12 * framework
13