2023-07-27 06:40:22 -05:00
|
|
|
|
2018-09-27 12:10:20 -05:00
|
|
|
|
|
|
|
// The output for humans should just highlight the whole span without showing
|
|
|
|
// the suggested replacement, but we also want to test that suggested
|
|
|
|
// replacement only removes one set of parentheses, rather than naïvely
|
|
|
|
// stripping away any starting or ending parenthesis characters—hence this
|
|
|
|
// test of the JSON error format.
|
|
|
|
|
2019-03-07 00:13:59 -06:00
|
|
|
#![feature(custom_inner_attributes)]
|
2022-11-14 21:58:17 -06:00
|
|
|
#![feature(closure_lifetime_binder)]
|
2019-03-07 00:13:59 -06:00
|
|
|
#![rustfmt::skip]
|
2018-09-27 12:10:20 -05:00
|
|
|
|
2019-03-07 00:21:41 -06:00
|
|
|
#![deny(clippy::unused_unit)]
|
2019-08-24 14:42:39 -05:00
|
|
|
#![allow(dead_code)]
|
2020-12-19 08:49:42 -06:00
|
|
|
#![allow(clippy::from_over_into)]
|
2019-03-07 00:21:41 -06:00
|
|
|
|
2018-09-27 12:10:20 -05:00
|
|
|
struct Unitter;
|
|
|
|
impl Unitter {
|
2019-03-07 00:21:41 -06:00
|
|
|
#[allow(clippy::no_effect)]
|
2020-05-12 18:04:16 -05:00
|
|
|
pub fn get_unit<F: Fn() -> (), G>(&self, f: F, _g: G) -> ()
|
2018-09-27 12:10:20 -05:00
|
|
|
where G: Fn() -> () {
|
2019-05-30 01:23:47 -05:00
|
|
|
let _y: &dyn Fn() -> () = &f;
|
2018-09-27 12:10:20 -05:00
|
|
|
(); // this should not lint, as it's not in return type position
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Into<()> for Unitter {
|
2018-12-08 11:56:59 -06:00
|
|
|
#[rustfmt::skip]
|
2018-09-27 12:10:20 -05:00
|
|
|
fn into(self) -> () {
|
|
|
|
()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:04:16 -05:00
|
|
|
trait Trait {
|
|
|
|
fn redundant<F: FnOnce() -> (), G, H>(&self, _f: F, _g: G, _h: H)
|
|
|
|
where
|
|
|
|
G: FnMut() -> (),
|
|
|
|
H: Fn() -> ();
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Trait for Unitter {
|
|
|
|
fn redundant<F: FnOnce() -> (), G, H>(&self, _f: F, _g: G, _h: H)
|
|
|
|
where
|
|
|
|
G: FnMut() -> (),
|
|
|
|
H: Fn() -> () {}
|
|
|
|
}
|
|
|
|
|
2018-09-27 12:10:20 -05:00
|
|
|
fn return_unit() -> () { () }
|
|
|
|
|
2019-03-07 00:21:41 -06:00
|
|
|
#[allow(clippy::needless_return)]
|
|
|
|
#[allow(clippy::never_loop)]
|
2019-10-02 15:48:19 -05:00
|
|
|
#[allow(clippy::unit_cmp)]
|
2018-09-27 12:10:20 -05:00
|
|
|
fn main() {
|
|
|
|
let u = Unitter;
|
|
|
|
assert_eq!(u.get_unit(|| {}, return_unit), u.into());
|
|
|
|
return_unit();
|
|
|
|
loop {
|
|
|
|
break();
|
|
|
|
}
|
|
|
|
return();
|
|
|
|
}
|
2019-08-24 14:42:39 -05:00
|
|
|
|
|
|
|
// https://github.com/rust-lang/rust-clippy/issues/4076
|
|
|
|
fn foo() {
|
|
|
|
macro_rules! foo {
|
|
|
|
(recv($r:expr) -> $res:pat => $body:expr) => {
|
|
|
|
$body
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foo! {
|
|
|
|
recv(rx) -> _x => ()
|
|
|
|
}
|
|
|
|
}
|
2020-10-27 09:18:08 -05:00
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn test()->(){}
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn test2() ->(){}
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn test3()-> (){}
|
2021-05-04 17:20:15 -05:00
|
|
|
|
|
|
|
fn macro_expr() {
|
|
|
|
macro_rules! e {
|
|
|
|
() => (());
|
|
|
|
}
|
|
|
|
e!()
|
|
|
|
}
|
2022-11-14 21:58:17 -06:00
|
|
|
|
|
|
|
mod issue9748 {
|
|
|
|
fn main() {
|
|
|
|
let _ = for<'a> |_: &'a u32| -> () {};
|
|
|
|
}
|
|
|
|
}
|
2024-02-20 07:18:49 -06:00
|
|
|
|
|
|
|
mod issue9949 {
|
|
|
|
fn main() {
|
|
|
|
#[doc = "documentation"]
|
|
|
|
()
|
|
|
|
}
|
|
|
|
}
|