mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
75 lines
978 B
Rust
75 lines
978 B
Rust
|
//@aux-build:proc_macros.rs:proc-macro
|
||
|
#![allow(clippy::redundant_closure_call, unused)]
|
||
|
#![warn(clippy::single_call_fn)]
|
||
|
#![no_main]
|
||
|
|
||
|
#[macro_use]
|
||
|
extern crate proc_macros;
|
||
|
|
||
|
// Do not lint since it's public
|
||
|
pub fn f() {}
|
||
|
|
||
|
fn i() {}
|
||
|
fn j() {}
|
||
|
|
||
|
fn h() {
|
||
|
// Linted
|
||
|
let a = i;
|
||
|
// Do not lint closures
|
||
|
let a = (|| {
|
||
|
// Not linted
|
||
|
a();
|
||
|
// Imo, it's reasonable to lint this as the function is still only being used once. Just in
|
||
|
// a closure.
|
||
|
j();
|
||
|
});
|
||
|
a();
|
||
|
}
|
||
|
|
||
|
fn g() {
|
||
|
f();
|
||
|
}
|
||
|
|
||
|
fn c() {
|
||
|
println!("really");
|
||
|
println!("long");
|
||
|
println!("function...");
|
||
|
}
|
||
|
|
||
|
fn d() {
|
||
|
c();
|
||
|
}
|
||
|
|
||
|
fn a() {}
|
||
|
|
||
|
fn b() {
|
||
|
a();
|
||
|
|
||
|
external! {
|
||
|
fn lol() {
|
||
|
lol_inner();
|
||
|
}
|
||
|
fn lol_inner() {}
|
||
|
}
|
||
|
with_span! {
|
||
|
span
|
||
|
fn lol2() {
|
||
|
lol2_inner();
|
||
|
}
|
||
|
fn lol2_inner() {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn e() {
|
||
|
b();
|
||
|
b();
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn k() {}
|
||
|
|
||
|
#[test]
|
||
|
fn l() {
|
||
|
k();
|
||
|
}
|