summaryrefslogtreecommitdiffstats
path: root/tests/ui/chalkify/lower_struct.rs
blob: 6be0d4dd5bd2978c07a2240d914f834af585c322 (plain)
1
2
3
4
5
6
7
8
// check-pass
// compile-flags: -Z trait-solver=chalk

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

fn main() { }