summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-call.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-call.rs')
-rw-r--r--src/test/ui/consts/const-call.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/ui/consts/const-call.rs b/src/test/ui/consts/const-call.rs
new file mode 100644
index 000000000..28e89559f
--- /dev/null
+++ b/src/test/ui/consts/const-call.rs
@@ -0,0 +1,8 @@
+fn f(x: usize) -> usize {
+ x
+}
+
+fn main() {
+ let _ = [0; f(2)];
+ //~^ ERROR cannot call non-const fn
+}