summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-as-fn.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-as-fn.stderr')
-rw-r--r--src/test/ui/consts/const-as-fn.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/consts/const-as-fn.stderr b/src/test/ui/consts/const-as-fn.stderr
new file mode 100644
index 000000000..6c51ed893
--- /dev/null
+++ b/src/test/ui/consts/const-as-fn.stderr
@@ -0,0 +1,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`.