about summary refs log tree commit diff
path: root/tests/ui/consts/const-call.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/const-call.rs')
-rw-r--r--tests/ui/consts/const-call.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/consts/const-call.rs b/tests/ui/consts/const-call.rs
new file mode 100644
index 00000000000..28e89559fe5
--- /dev/null
+++ b/tests/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
+}