]> git.lizzy.rs Git - rust.git/blob - src/test/ui/chalkify/lower_struct.rs
Merge commit '3e7c6dec244539970b593824334876f8b6ed0b18' into clippyup
[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() { }