We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d4da92 commit af2931bCopy full SHA for af2931b
src/librustc_error_codes/error_codes/E0399.md
@@ -1,9 +1,11 @@
1
+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
-```compile_fail,E0399
8
+```ignore
9
#![feature(associated_type_defaults)]
10
11
pub trait Foo {
@@ -20,7 +22,7 @@ impl Foo for i32 {
20
22
21
23
To fix this, add an implementation for each default method from the trait:
24
-```
25
26
27
28
0 commit comments