rust/tests/ui/chalkify/lower_struct.rs
2023-01-11 09:32:08 +00:00

9 lines
153 B
Rust

// check-pass
// compile-flags: -Z trait-solver=chalk
struct Foo<'a, T> where Box<T>: Clone {
_x: std::marker::PhantomData<&'a T>,
}
fn main() { }