rust/tests/ui/non_expressive_names.rs

57 lines
1,001 B
Rust
Raw Normal View History

#![warn(clippy::all)]
2018-07-28 17:34:52 +02:00
#![allow(unused, clippy::println_empty_string)]
#[derive(Clone, Debug)]
enum MaybeInst {
Split,
Split1(usize),
Split2(usize),
}
struct InstSplit {
uiae: usize,
}
impl MaybeInst {
fn fill(&mut self) {
let filled = match *self {
MaybeInst::Split1(goto1) => panic!(1),
MaybeInst::Split2(goto2) => panic!(2),
_ => unimplemented!(),
};
unimplemented!()
}
}
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 23:26:16 +01:00
let _1_ok = 1;
2017-11-03 21:54:33 +01:00
}
2018-02-02 07:49:47 +01:00
2018-08-15 08:11:07 +02:00
fn issue2927() {
2018-12-09 23:26:16 +01:00
let args = 1;
format!("{:?}", 2);
2018-08-15 08:11:07 +02:00
}
2018-08-25 14:49:56 +02:00
fn issue3078() {
match "a" {
stringify!(a) => {},
2018-12-09 23:26:16 +01:00
_ => {},
2018-08-25 14:49:56 +02:00
}
}
2018-02-02 07:49:47 +01:00
struct Bar;
impl Bar {
fn bar() {
let _1 = 1;
let ____1 = 1;
let __1___2 = 12;
2018-12-09 23:26:16 +01:00
let _1_ok = 1;
2018-02-02 07:49:47 +01:00
}
}
fn main() {}