2019-02-10 08:44:49 +00:00
|
|
|
#![warn(clippy::all)]
|
2022-03-17 23:53:28 +00:00
|
|
|
#![allow(unused, clippy::println_empty_string, non_snake_case, clippy::let_unit_value)]
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
enum MaybeInst {
|
|
|
|
Split,
|
|
|
|
Split1(usize),
|
|
|
|
Split2(usize),
|
|
|
|
}
|
|
|
|
|
|
|
|
struct InstSplit {
|
|
|
|
uiae: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MaybeInst {
|
|
|
|
fn fill(&mut self) {
|
2021-07-21 03:23:22 +00:00
|
|
|
#[allow(non_fmt_panics)]
|
2017-02-07 20:05:30 +00:00
|
|
|
let filled = match *self {
|
2021-11-04 12:52:36 +00:00
|
|
|
MaybeInst::Split1(goto1) => panic!("1"),
|
|
|
|
MaybeInst::Split2(goto2) => panic!("2"),
|
2017-02-07 20:05:30 +00:00
|
|
|
_ => unimplemented!(),
|
|
|
|
};
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-03 01:01:41 +00:00
|
|
|
fn underscores_and_numbers() {
|
|
|
|
let _1 = 1; //~ERROR Consider a more descriptive name
|
|
|
|
let ____1 = 1; //~ERROR Consider a more descriptive name
|
|
|
|
let __1___2 = 12; //~ERROR Consider a more descriptive name
|
2018-12-09 22:26:16 +00:00
|
|
|
let _1_ok = 1;
|
2017-11-03 20:54:33 +00:00
|
|
|
}
|
2018-02-02 06:49:47 +00:00
|
|
|
|
2018-08-15 06:11:07 +00:00
|
|
|
fn issue2927() {
|
2018-12-09 22:26:16 +00:00
|
|
|
let args = 1;
|
|
|
|
format!("{:?}", 2);
|
2018-08-15 06:11:07 +00:00
|
|
|
}
|
|
|
|
|
2018-08-25 12:49:56 +00:00
|
|
|
fn issue3078() {
|
2021-07-21 03:23:22 +00:00
|
|
|
#[allow(clippy::single_match)]
|
2018-08-25 12:49:56 +00:00
|
|
|
match "a" {
|
|
|
|
stringify!(a) => {},
|
2018-12-09 22:26:16 +00:00
|
|
|
_ => {},
|
2018-08-25 12:49:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-02 06:49:47 +00:00
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl Bar {
|
|
|
|
fn bar() {
|
|
|
|
let _1 = 1;
|
|
|
|
let ____1 = 1;
|
|
|
|
let __1___2 = 12;
|
2018-12-09 22:26:16 +00:00
|
|
|
let _1_ok = 1;
|
2018-02-02 06:49:47 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-07 20:19:12 +00:00
|
|
|
|
2019-02-10 08:44:49 +00:00
|
|
|
fn main() {}
|