]> git.lizzy.rs Git - rust.git/commitdiff
Clean up E0741 error explanation
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Fri, 31 Jul 2020 11:15:47 +0000 (13:15 +0200)
committerGuillaume Gomez <guillaume1.gomez@gmail.com>
Fri, 31 Jul 2020 11:15:47 +0000 (13:15 +0200)
src/librustc_error_codes/error_codes/E0741.md

index 0a8650282a3747955b759a9822716f041ca34aca..91379bfe05c65fe5122667d9b81b85a33d06473e 100644 (file)
@@ -1,5 +1,6 @@
-Only structural-match types (that is, types that derive `PartialEq` and `Eq`)
-may be used as the types of const generic parameters.
+A non-structural-match type was used as the type of a const generic parameter.
+
+Erroneous code example:
 
 ```compile_fail,E0741
 #![feature(const_generics)]
@@ -9,12 +10,15 @@ struct A;
 struct B<const X: A>; // error!
 ```
 
-To fix this example, we derive `PartialEq` and `Eq`.
+Only structural-match types (that is, types that derive `PartialEq` and `Eq`)
+may be used as the types of const generic parameters.
+
+To fix the previous code example, we derive `PartialEq` and `Eq`:
 
 ```
 #![feature(const_generics)]
 
-#[derive(PartialEq, Eq)]
+#[derive(PartialEq, Eq)] // We derive both traits here.
 struct A;
 
 struct B<const X: A>; // ok!