about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-15657.rs
blob: c6f6506cd8d033d48c97877b26192fcf2a430c31 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@check-pass
#![warn(clippy::len_zero)]

pub struct S1;
pub struct S2;

impl S1 {
    pub fn len(&self) -> S2 {
        S2
    }
}