2023-11-24 09:53:10 +01:00
|
|
|
error: expected type, found constant
|
|
|
|
--> $DIR/shadowed-const.rs:19:20
|
2022-02-02 16:42:37 +00:00
|
|
|
|
|
|
|
|
LL | const QUX: Self::BAR;
|
2023-11-24 09:53:10 +01:00
|
|
|
| ^^^ unexpected constant
|
|
|
|
|
|
|
|
|
note: the associated constant is defined here
|
|
|
|
--> $DIR/shadowed-const.rs:18:3
|
|
|
|
|
|
|
|
|
LL | const BAR: usize;
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
2022-02-02 16:42:37 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-02-02 16:42:37 +00:00
|
|
|
|