1
Fork 0

convert to future compat lint

This commit is contained in:
Bastian Kauschke 2020-08-06 10:48:36 +02:00
parent c81935e6df
commit ef6100e846
6 changed files with 67 additions and 41 deletions

View file

@ -539,6 +539,16 @@ declare_lint! {
};
}
declare_lint! {
pub CONST_EVALUATABLE_UNCHECKED,
Warn,
"detects a generic constant is used in a type without a emitting a warning",
@future_incompatible = FutureIncompatibleInfo {
reference: "TODO",
edition: None,
};
}
declare_lint_pass! {
/// Does nothing as a lint pass, but registers some `Lint`s
/// that are used by other parts of the compiler.
@ -612,6 +622,7 @@ declare_lint_pass! {
UNSAFE_OP_IN_UNSAFE_FN,
INCOMPLETE_INCLUDE,
CENUM_IMPL_DROP_CAST,
CONST_EVALUATABLE_UNCHECKED,
]
}