rust/src/test/ui/chalkify/lower_struct.rs
2018-12-25 21:08:33 -07:00

8 lines
184 B
Rust

#![feature(rustc_attrs)]
#[rustc_dump_program_clauses] //~ ERROR program clause dump
struct Foo<'a, T> where Box<T>: Clone {
_x: std::marker::PhantomData<&'a T>,
}
fn main() { }