summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-fn-ptr.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/consts/const-fn-ptr.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/consts/const-fn-ptr.stderr')
-rw-r--r--tests/ui/consts/const-fn-ptr.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/consts/const-fn-ptr.stderr b/tests/ui/consts/const-fn-ptr.stderr
new file mode 100644
index 000000000..84b02a25e
--- /dev/null
+++ b/tests/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
+