Skip to content

Commit

Permalink
Mark E0399.md as obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-schievink committed Feb 21, 2020
1 parent c605831 commit 6cc268b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/librustc_error_codes/error_codes/E0399.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Note: This error code is no longer emitted by the compiler.
#### Note: this error code is no longer emitted by the compiler

You implemented a trait, overriding one or more of its associated types but did
not reimplement its default methods.

Example of erroneous code:

```ignore
```
#![feature(associated_type_defaults)]
pub trait Foo {
Expand All @@ -22,7 +22,7 @@ impl Foo for i32 {

To fix this, add an implementation for each default method from the trait:

```ignore
```
#![feature(associated_type_defaults)]
pub trait Foo {
Expand Down

0 comments on commit 6cc268b

Please sign in to comment.