rust/tests/ui/author/call.stdout

17 lines
606 B
Plaintext
Raw Normal View History

2018-05-27 09:04:28 -05:00
if_chain! {
2021-11-10 15:59:49 -06:00
if let StmtKind::Local(local) = stmt.kind;
if let Some(init) = local.init;
if let ExprKind::Call(func, args) = init.kind;
2021-11-08 17:05:37 -06:00
if let ExprKind::Path(ref qpath) = func.kind;
if match_qpath(qpath, &["{{root}}", "std", "cmp", "min"]);
2018-05-27 09:04:28 -05:00
if args.len() == 2;
2019-09-27 10:16:06 -05:00
if let ExprKind::Lit(ref lit) = args[0].kind;
2021-10-28 20:39:41 -05:00
if let LitKind::Int(3, LitIntType::Unsuffixed) = lit.node;
2019-09-27 10:16:06 -05:00
if let ExprKind::Lit(ref lit1) = args[1].kind;
2021-10-28 20:39:41 -05:00
if let LitKind::Int(4, LitIntType::Unsuffixed) = lit1.node;
2019-09-27 10:16:06 -05:00
if let PatKind::Wild = local.pat.kind;
2018-05-27 09:04:28 -05:00
then {
// report your lint here
}
}