Skip to content

Commit

Permalink
error code examples: replace some ignore with compile_fail
Browse files Browse the repository at this point in the history
  • Loading branch information
tspiteri committed Jan 30, 2020
1 parent aa046da commit 6d768dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/librustc_error_codes/error_codes/E0454.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
A link name was given with an empty name. Erroneous code example:

```ignore (cannot-test-this-because-rustdoc-stops-compile-fail-before-codegen)
```compile_fail,E0454
#[link(name = "")] extern {}
// error: `#[link(name = "")]` given with empty name
```
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_error_codes/error_codes/E0458.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
An unknown "kind" was specified for a link attribute. Erroneous code example:

```ignore (cannot-test-this-because-rustdoc-stops-compile-fail-before-codegen)
```compile_fail,E0458
#[link(kind = "wonderful_unicorn")] extern {}
// error: unknown kind: `wonderful_unicorn`
```
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_error_codes/error_codes/E0459.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
A link was used without a name parameter. Erroneous code example:

```ignore (cannot-test-this-because-rustdoc-stops-compile-fail-before-codegen)
```compile_fail,E0459
#[link(kind = "dylib")] extern {}
// error: `#[link(...)]` specified without `name = "foo"`
```
Expand Down

0 comments on commit 6d768dd

Please sign in to comment.