about summary refs log tree commit diff
path: root/src/test/ui/chalkify/lower_trait.rs
blob: 0e1956022f9fe5f61458ceb1078de82122dc0a67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![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");
}