blob: d99ca1b5b55d4200df4831fa22074cc3f2ce39cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// run-rustfix
#![warn(clippy::repeat_once)]
#[allow(unused, clippy::many_single_char_names, clippy::redundant_clone)]
fn main() {
const N: usize = 1;
let s = "str";
let string = "String".to_string();
let slice = [1; 5];
let a = [1; 5].repeat(1);
let b = slice.repeat(1);
let c = "hello".repeat(N);
let d = "hi".repeat(1);
let e = s.repeat(1);
let f = string.repeat(1);
}
|