summaryrefslogtreecommitdiffstats
path: root/src/test/ui/chalkify/lower_struct.rs
blob: 94a0716d383546c2f307cac7232cd2f3a1543fd1 (plain)
1
2
3
4
5
6
7
8
// check-pass
// compile-flags: -Z chalk

struct Foo<'a, T> where Box<T>: Clone {
    _x: std::marker::PhantomData<&'a T>,
}

fn main() { }