rust/src/test/ui/chalkify/lower_struct.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
140 B
Rust
Raw Normal View History

2020-03-03 16:25:03 +00:00
// check-pass
// compile-flags: -Z chalk
struct Foo<'a, T> where Box<T>: Clone {
_x: std::marker::PhantomData<&'a T>,
}
fn main() { }