]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/crashes/ice-5944.rs
5caf29c619735384ea91d3b304dcd490a12c57eb
[rustc.git] / src / tools / clippy / tests / ui / crashes / ice-5944.rs
1 #![warn(clippy::repeat_once)]
2
3 trait Repeat {
4 fn repeat(&self) {}
5 }
6
7 impl Repeat for usize {
8 fn repeat(&self) {}
9 }
10
11 fn main() {
12 let _ = 42.repeat();
13 }