We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c605831 commit 6cc268bCopy full SHA for 6cc268b
src/librustc_error_codes/error_codes/E0399.md
@@ -1,11 +1,11 @@
1
-Note: This error code is no longer emitted by the compiler.
+#### Note: this error code is no longer emitted by the compiler
2
3
You implemented a trait, overriding one or more of its associated types but did
4
not reimplement its default methods.
5
6
Example of erroneous code:
7
8
-```ignore
+```
9
#![feature(associated_type_defaults)]
10
11
pub trait Foo {
@@ -22,7 +22,7 @@ impl Foo for i32 {
22
23
To fix this, add an implementation for each default method from the trait:
24
25
26
27
28
0 commit comments