about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-10508c.rs
blob: d207fdb2c87adfdfe82c4d93f487173dd0fccec3 (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass

#[derive(Debug)]
struct S<T> {
    t: T,
    s: Box<S<fn(u: T)>>,
}

fn main() {}