rust/tests/ui/error-codes/E0454.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
258 B
Plaintext
Raw Normal View History

error[E0454]: link name must not be empty
--> $DIR/E0454.rs:1:15
2018-02-08 03:35:35 +00:00
|
2020-09-01 21:12:52 +00:00
LL | #[link(name = "")] extern "C" {}
| ^^ empty link name
2018-02-08 03:35:35 +00:00
error: aborting due to 1 previous error
2018-02-08 03:35:35 +00:00
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0454`.