]> git.lizzy.rs Git - rust.git/blob - tests/ui/chalkify/lower_trait.rs
Auto merge of #106998 - matthiaskrgr:rollup-hmfisji, r=matthiaskrgr
[rust.git] / tests / ui / chalkify / lower_trait.rs
1 // check-pass
2 // compile-flags: -Z trait-solver=chalk
3
4 trait Bar { }
5
6 trait Foo<S, T: ?Sized> {
7     type Assoc: Bar + ?Sized;
8 }
9
10 fn main() {
11 }