]> git.lizzy.rs Git - rust.git/blob - src/test/ui/chalkify/lower_struct.rs
Rollup merge of #92959 - asquared31415:test-non-fn-help, r=estebank
[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() { }