blob: 6c51ed89393a5d70009278df1e77150981a5d16f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0618]: expected function, found `usize`
--> $DIR/const-as-fn.rs:4:5
|
LL | const FOO: usize = 0;
| ---------------- `FOO` defined here
...
LL | FOO();
| ^^^--
| |
| call expression requires function
error: aborting due to previous error
For more information about this error, try `rustc --explain E0618`.
|