mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-06 23:17:37 +00:00
9 lines
140 B
Rust
9 lines
140 B
Rust
![]() |
// check-pass
|
||
|
// compile-flags: -Z chalk
|
||
|
|
||
|
struct Foo<'a, T> where Box<T>: Clone {
|
||
|
_x: std::marker::PhantomData<&'a T>,
|
||
|
}
|
||
|
|
||
|
fn main() { }
|