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, 0 insertions, 20 deletions
diff --git a/src/test/ui/consts/const-fn-ptr.stderr b/src/test/ui/consts/const-fn-ptr.stderr
deleted file mode 100644
index 84b02a25e..000000000
--- a/src/test/ui/consts/const-fn-ptr.stderr
+++ /dev/null
@@ -1,20 +0,0 @@
-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
-