]> git.lizzy.rs Git - rust.git/blob - src/test/ui/chalkify/lower_env1.rs
Update const_forget.rs
[rust.git] / src / test / ui / chalkify / lower_env1.rs
1 #![feature(rustc_attrs)]
2 #![allow(dead_code)]
3
4 trait Foo { }
5
6 #[rustc_dump_program_clauses] //~ ERROR program clause dump
7 trait Bar where Self: Foo { }
8
9 #[rustc_dump_env_program_clauses] //~ ERROR program clause dump
10 fn bar<T: Bar + ?Sized>() {
11 }
12
13 fn main() {
14 }