]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/crashes/ice-5944.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / clippy / tests / ui / crashes / ice-5944.rs
CommitLineData
f20569fa
XL
1#![warn(clippy::repeat_once)]
2
3trait Repeat {
4 fn repeat(&self) {}
5}
6
7impl Repeat for usize {
8 fn repeat(&self) {}
9}
10
11fn main() {
12 let _ = 42.repeat();
13}