summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-consts/shadowed-const.stderr
blob: 2db645b3c9662f58a188efd6f8de68f9763c4d4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: expected type, found constant
  --> $DIR/shadowed-const.rs:19:20
   |
LL |   const QUX: Self::BAR;
   |                    ^^^ unexpected constant
   |
note: the associated constant is defined here
  --> $DIR/shadowed-const.rs:18:3
   |
LL |   const BAR: usize;
   |   ^^^^^^^^^^^^^^^^

error: aborting due to 1 previous error