about summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0015.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0015.stderr')
-rw-r--r--src/test/ui/error-codes/E0015.stderr11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/error-codes/E0015.stderr b/src/test/ui/error-codes/E0015.stderr
deleted file mode 100644
index ec1ce47b2ce..00000000000
--- a/src/test/ui/error-codes/E0015.stderr
+++ /dev/null
@@ -1,11 +0,0 @@
-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`.