]> git.lizzy.rs Git - rust.git/commitdiff
Add comments on error code list
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Wed, 29 Jun 2016 20:10:20 +0000 (22:10 +0200)
committerggomez <guillaume1.gomez@gmail.com>
Thu, 30 Jun 2016 09:14:22 +0000 (11:14 +0200)
src/libsyntax/diagnostic_list.rs
src/libsyntax/lib.rs

index d2a76ca92d0b39a7040c71906a45a1cce8c48a20..eb30657bd56ead7a804b8fd7b22c9c10fe6051ed 100644 (file)
 ```compile_fail,E0533
 #[export_name]
 pub fn something() {}
+
+fn main() {}
 ```
 "##,
 
 }
 
-
 register_diagnostics! {
-    E0534,
-    E0535,
-    E0536,
-    E0537,
-    E0538,
-    E0539,
-    E0540,
-    E0541,
-    E0542,
-    E0543,
-    E0544,
-    E0545,
-    E0546,
-    E0547,
-    E0548,
-    E0549,
-    E0550,
-    E0551,
-    E0552,
-    E0553,
-    E0554,
-    E0555,
-    E0556,
-    E0557,
-    E0558,
+    E0534, // expected one argument
+    E0535, // invalid argument
+    E0536, // expected 1 cfg-pattern
+    E0537, // invalid predicate
+    E0538, // multiple [same] items
+    E0539, // incorrect meta item
+    E0540, // multiple rustc_deprecated attributes
+    E0541, // unknown meta item
+    E0542, // missing 'since'
+    E0543, // missing 'reason'
+    E0544, // multiple stability levels
+    E0545, // incorrect 'issue'
+    E0546, // missing 'feature'
+    E0547, // missing 'issue'
+    E0548, // incorrect stability attribute type
+    E0549, // rustc_deprecated attribute must be paired with either stable or unstable attribute
+    E0550, // multiple deprecated attributes
+    E0551, // incorrect meta item
+    E0552, // unrecognized representation hint
+    E0553, // unrecognized enum representation hint
+    E0554, // #[feature] may not be used on the [] release channel
+    E0555, // malformed feature attribute, expected #![feature(...)]
+    E0556, // malformed feature, expected just one word
+    E0557, // feature has been removed
 }
index 9599ce681b296483ad24b231e6d4e7486c029d13..8febf1c49ec2badeb618ed632b4c661168da73d4 100644 (file)
@@ -138,4 +138,4 @@ pub mod tt {
     }
 }
 
-__build_diagnostic_array! { libsyntax, DIAGNOSTICS }
+// __build_diagnostic_array! { libsyntax, DIAGNOSTICS }