]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc/lint/builtin.rs
Allow individual lints to opt into being reported in external macros
[rust.git] / src / librustc / lint / builtin.rs
index a46b31206224732568d9094dacb59c764fe8aff2..430e06ecbdfbc634f411adc5745878444d9a3c06 100644 (file)
@@ -77,7 +77,8 @@
 declare_lint! {
     pub UNREACHABLE_CODE,
     Warn,
-    "detects unreachable code paths"
+    "detects unreachable code paths",
+    report_in_external_macro
 }
 
 declare_lint! {
 declare_lint! {
     pub DEPRECATED,
     Warn,
-    "detects use of deprecated items"
+    "detects use of deprecated items",
+    report_in_external_macro
 }
 
 declare_lint! {