summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/unstable-const-fn-in-libcore.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/unstable-const-fn-in-libcore.stderr')
-rw-r--r--src/test/ui/consts/unstable-const-fn-in-libcore.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/consts/unstable-const-fn-in-libcore.stderr b/src/test/ui/consts/unstable-const-fn-in-libcore.stderr
deleted file mode 100644
index e5b00dd07..000000000
--- a/src/test/ui/consts/unstable-const-fn-in-libcore.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-error[E0493]: destructor of `F` cannot be evaluated at compile-time
- --> $DIR/unstable-const-fn-in-libcore.rs:17:60
- |
-LL | const fn unwrap_or_else<F: ~const FnOnce() -> T>(self, f: F) -> T {
- | ^ the destructor for this type cannot be evaluated in constant functions
-...
-LL | }
- | - value is dropped here
-
-error[E0493]: destructor of `Opt<T>` cannot be evaluated at compile-time
- --> $DIR/unstable-const-fn-in-libcore.rs:17:54
- |
-LL | const fn unwrap_or_else<F: ~const FnOnce() -> T>(self, f: F) -> T {
- | ^^^^ the destructor for this type cannot be evaluated in constant functions
-...
-LL | }
- | - value is dropped here
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0493`.