mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
Test for ExprCall in clippy::author
This commit is contained in:
parent
e86268e67f
commit
bc1de58d26
6
tests/ui/author/call.rs
Executable file
6
tests/ui/author/call.rs
Executable file
@ -0,0 +1,6 @@
|
||||
#![feature(tool_attributes)]
|
||||
|
||||
fn main() {
|
||||
#[clippy::author]
|
||||
let _ = ::std::cmp::min(3, 4);
|
||||
}
|
17
tests/ui/author/call.stdout
Normal file
17
tests/ui/author/call.stdout
Normal 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
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user