]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_error_codes/error_codes/E0746.md
Fix error index test
[rust.git] / src / librustc_error_codes / error_codes / E0746.md
index acf369d8e144fd13dd0c683d6927822346d61e7f..2df27bcf0bf093377b86f94b252495c47255d47f 100644 (file)
@@ -2,7 +2,8 @@ Return types cannot be `dyn Trait`s as they must be `Sized`.
 
 Erroneous code example:
 
-```compile_fail,E0746
+```compile_fail,E0277
+# // FIXME: after E0746 is in beta, change the above
 trait T {
     fn bar(&self);
 }