blob: 715f09632bd7e7f0fd814dcded009963301f73c6 [file] [log] [blame]
#![feature(rustc_attrs)]
#[rustc_dump_program_clauses] //~ ERROR program clause dump
trait Foo<F: ?Sized> where for<'a> F: Fn(&'a (u8, u16)) -> &'a u8
{
}
fn main() {
println!("hello");
}