]> git.lizzy.rs Git - rust.git/blob - src/test/ui/chalkify/lower_struct.rs
Rollup merge of #95473 - lqd:macro-expansion, r=petrochenkov
[rust.git] / src / test / ui / chalkify / lower_struct.rs
1 // check-pass
2 // compile-flags: -Z chalk
3
4 struct Foo<'a, T> where Box<T>: Clone {
5     _x: std::marker::PhantomData<&'a T>,
6 }
7
8 fn main() { }