summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-fn-ptr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-fn-ptr.stderr')
-rw-r--r--src/test/ui/consts/const-fn-ptr.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/consts/const-fn-ptr.stderr b/src/test/ui/consts/const-fn-ptr.stderr
new file mode 100644
index 000000000..84b02a25e
--- /dev/null
+++ b/src/test/ui/consts/const-fn-ptr.stderr
@@ -0,0 +1,20 @@
+error: function pointer calls are not allowed in statics
+ --> $DIR/const-fn-ptr.rs:5:19
+ |
+LL | static STAT: () = make_fn_ptr()();
+ | ^^^^^^^^^^^^^^^
+
+error: function pointer calls are not allowed in constants
+ --> $DIR/const-fn-ptr.rs:8:19
+ |
+LL | const CONST: () = make_fn_ptr()();
+ | ^^^^^^^^^^^^^^^
+
+error: function pointer calls are not allowed in constant functions
+ --> $DIR/const-fn-ptr.rs:12:5
+ |
+LL | make_fn_ptr()();
+ | ^^^^^^^^^^^^^^^
+
+error: aborting due to 3 previous errors
+