mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 23:20:39 +00:00
11 lines
300 B
Text
11 lines
300 B
Text
|
if_chain! {
|
||
|
if let Expr_::ExprCast(ref expr, ref cast_ty) = stmt.node;
|
||
|
if let Ty_::TyPath(ref qp) = cast_ty.node;
|
||
|
if match_qpath(qp, &["char"]);
|
||
|
if let Expr_::ExprLit(ref lit) = expr.node;
|
||
|
if let LitKind::Int(69, _) = lit.node;
|
||
|
then {
|
||
|
// report your lint here
|
||
|
}
|
||
|
}
|