summary refs log tree commit diff
path: root/src/test/ui/chalkify/lower_env1.rs
blob: afb6bddbf26a54ca92e2cdddf70a3e874dca7e30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(rustc_attrs)]
#![allow(dead_code)]

trait Foo { }

#[rustc_dump_program_clauses] //~ ERROR program clause dump
trait Bar where Self: Foo { }

#[rustc_dump_env_program_clauses] //~ ERROR program clause dump
fn bar<T: Bar + ?Sized>() {
}

fn main() {
}