]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-24682.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-24682.stderr
1 error[E0229]: associated type bindings are not allowed here
2 --> $DIR/issue-24682.rs:5:11
3 |
4 LL | / N=
5 LL | | Self::N> {
6 | |_________________^ associated type not allowed here
7
8 error[E0229]: associated type bindings are not allowed here
9 --> $DIR/issue-24682.rs:11:13
10 |
11 LL | <N=()>
12 | ^^^^ associated type not allowed here
13
14 error[E0229]: associated type bindings are not allowed here
15 --> $DIR/issue-24682.rs:15:13
16 |
17 LL | u32<N=()>
18 | ^^^^ associated type not allowed here
19
20 error: aborting due to 3 previous errors
21
22 For more information about this error, try `rustc --explain E0229`.