2021-02-17 08:50:59 -06:00
|
|
|
error[E0618]: expected function, found `usize`
|
|
|
|
--> $DIR/const-as-fn.rs:4:5
|
|
|
|
|
|
|
|
|
LL | const FOO: usize = 0;
|
2022-02-13 09:27:59 -06:00
|
|
|
| ---------------- `FOO` defined here
|
2021-02-17 08:50:59 -06:00
|
|
|
...
|
|
|
|
LL | FOO();
|
|
|
|
| ^^^--
|
|
|
|
| |
|
|
|
|
| call expression requires function
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-02-17 08:50:59 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0618`.
|