Test for ExprCall in clippy::author

This commit is contained in:
Andrea Lattuada 2018-05-27 16:04:28 +02:00
parent e86268e67f
commit bc1de58d26
2 changed files with 23 additions and 0 deletions

6
tests/ui/author/call.rs Executable file
View File

@ -0,0 +1,6 @@
#![feature(tool_attributes)]
fn main() {
#[clippy::author]
let _ = ::std::cmp::min(3, 4);
}

View File

@ -0,0 +1,17 @@
if_chain! {
if let Stmt_::StmtDecl(ref decl, _) = stmt.node
if let Decl_::DeclLocal(ref local) = decl.node;
if let Some(ref init) = local.init
if let Expr_::ExprCall(ref func, ref args) = init.node;
if let Expr_::ExprPath(ref path) = func.node;
if match_qpath(path, &["{{root}}", "std", "cmp", "min"]);
if args.len() == 2;
if let Expr_::ExprLit(ref lit) = args[0].node;
if let LitKind::Int(3, _) = lit.node;
if let Expr_::ExprLit(ref lit1) = args[1].node;
if let LitKind::Int(4, _) = lit1.node;
if let PatKind::Wild = local.pat.node;
then {
// report your lint here
}
}