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