2022-09-15 15:18:23 +08:00
|
|
|
error: non-item in item list
|
2024-02-07 10:42:01 +08:00
|
|
|
--> $DIR/suggest-assoc-const.rs:5:5
|
2022-09-15 15:18:23 +08:00
|
|
|
|
|
|
|
|
LL | let _X: i32;
|
2024-07-05 19:32:17 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: consider using `const` instead of `let` for associated const
|
|
|
|
|
|
|
|
|
LL | const _X: i32;
|
|
|
|
| ~~~~~
|
2022-09-15 15:18:23 +08:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-09-15 15:18:23 +08:00
|
|
|
|