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