2020-08-23 05:05:34 -05:00
|
|
|
#![warn(clippy::repeat_once)]
|
2022-03-17 18:53:28 -05:00
|
|
|
#![allow(clippy::let_unit_value)]
|
2020-08-23 05:05:34 -05:00
|
|
|
|
|
|
|
trait Repeat {
|
|
|
|
fn repeat(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Repeat for usize {
|
|
|
|
fn repeat(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = 42.repeat();
|
|
|
|
}
|