summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/author/repeat.stdout
blob: 471bbce4f4185e2184ca058174d6cfe5480b8006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if_chain! {
    if let ExprKind::Repeat(value, length) = expr.kind;
    if let ExprKind::Lit(ref lit) = value.kind;
    if let LitKind::Int(1, LitIntType::Unsigned(UintTy::U8)) = lit.node;
    if let ArrayLen::Body(anon_const) = length;
    let expr1 = &cx.tcx.hir().body(anon_const.body).value;
    if let ExprKind::Lit(ref lit1) = expr1.kind;
    if let LitKind::Int(5, LitIntType::Unsuffixed) = lit1.node;
    then {
        // report your lint here
    }
}