Skip to content

Commit 6cc268b

Browse files
Mark E0399.md as obsolete
1 parent c605831 commit 6cc268b

File tree

1 file changed

+3
-3
lines changed
  • src/librustc_error_codes/error_codes

1 file changed

+3
-3
lines changed

src/librustc_error_codes/error_codes/E0399.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Note: This error code is no longer emitted by the compiler.
1+
#### Note: this error code is no longer emitted by the compiler
22

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

66
Example of erroneous code:
77

8-
```ignore
8+
```
99
#![feature(associated_type_defaults)]
1010
1111
pub trait Foo {
@@ -22,7 +22,7 @@ impl Foo for i32 {
2222

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

25-
```ignore
25+
```
2626
#![feature(associated_type_defaults)]
2727
2828
pub trait Foo {

0 commit comments

Comments
 (0)