summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/issue-68393-let-pat-assoc-constant.stderr
blob: 54ecc24981f80943769fdd3da5ed082c8a89c081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0158]: associated consts cannot be referenced in patterns
  --> $DIR/issue-68393-let-pat-assoc-constant.rs:20:40
   |
LL | pub fn test<A: Foo, B: Foo>(arg: EFoo, A::X: EFoo) {
   |                                        ^^^^

error[E0158]: associated consts cannot be referenced in patterns
  --> $DIR/issue-68393-let-pat-assoc-constant.rs:22:9
   |
LL |     let A::X = arg;
   |         ^^^^

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0158`.