summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/issue-102467.rs
blob: bff876e41d66a1f01be4182a98d744afefcb934c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Regression test for <https://github.com/rust-lang/rust/issues/102467>.
// It ensures that the expected error is displayed.

#![feature(associated_const_equality)]

trait T {
    type A: S<C<X = 0i32> = 34>;
    //~^ ERROR associated type bindings are not allowed here
}

trait S {
    const C: i32;
}

fn main() {}