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

14 lines
261 B
Rust

#![feature(rustc_attrs)]
trait Bar { }
#[rustc_dump_program_clauses] //~ ERROR program clause dump
trait Foo<S, T: ?Sized> {
#[rustc_dump_program_clauses] //~ ERROR program clause dump
type Assoc: Bar + ?Sized;
}
fn main() {
println!("hello");
}