]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-type-bounds/issue-102335-ty.rs
Auto merge of #103894 - mati865:gnullvm-libunwind-changes, r=thomcc
[rust.git] / src / test / ui / associated-type-bounds / issue-102335-ty.rs
1 trait T {
2     type A: S<C<i32 = u32> = ()>;
3     //~^ ERROR associated type bindings are not allowed here
4 }
5
6 trait Q {}
7
8 trait S {
9     type C: Q;
10 }
11
12 fn main() {}