summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0015.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/error-codes/E0015.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/error-codes/E0015.stderr b/tests/ui/error-codes/E0015.stderr
new file mode 100644
index 000000000..ec1ce47b2
--- /dev/null
+++ b/tests/ui/error-codes/E0015.stderr
@@ -0,0 +1,11 @@
+error[E0015]: cannot call non-const fn `create_some` in constants
+ --> $DIR/E0015.rs:5:25
+ |
+LL | const FOO: Option<u8> = create_some();
+ | ^^^^^^^^^^^^^
+ |
+ = note: calls in constants are limited to constant functions, tuple structs and tuple variants
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0015`.