summaryrefslogtreecommitdiffstats
path: root/src/test/ui/static/static-drop-scope.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/static/static-drop-scope.stderr')
-rw-r--r--src/test/ui/static/static-drop-scope.stderr89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/test/ui/static/static-drop-scope.stderr b/src/test/ui/static/static-drop-scope.stderr
new file mode 100644
index 000000000..ac32f217f
--- /dev/null
+++ b/src/test/ui/static/static-drop-scope.stderr
@@ -0,0 +1,89 @@
+error[E0493]: destructors cannot be evaluated at compile-time
+ --> $DIR/static-drop-scope.rs:7:60
+ |
+LL | static PROMOTION_FAIL_S: Option<&'static WithDtor> = Some(&WithDtor);
+ | ^^^^^^^^- value is dropped here
+ | |
+ | statics cannot evaluate destructors
+
+error[E0716]: temporary value dropped while borrowed
+ --> $DIR/static-drop-scope.rs:7:60
+ |
+LL | static PROMOTION_FAIL_S: Option<&'static WithDtor> = Some(&WithDtor);
+ | ------^^^^^^^^-
+ | | | |
+ | | | temporary value is freed at the end of this statement
+ | | creates a temporary which is freed while still in use
+ | using this value as a static requires that borrow lasts for `'static`
+
+error[E0493]: destructors cannot be evaluated at compile-time
+ --> $DIR/static-drop-scope.rs:11:59
+ |
+LL | const PROMOTION_FAIL_C: Option<&'static WithDtor> = Some(&WithDtor);
+ | ^^^^^^^^- value is dropped here
+ | |
+ | constants cannot evaluate destructors
+
+error[E0716]: temporary value dropped while borrowed
+ --> $DIR/static-drop-scope.rs:11:59
+ |
+LL | const PROMOTION_FAIL_C: Option<&'static WithDtor> = Some(&WithDtor);
+ | ------^^^^^^^^-
+ | | | |
+ | | | temporary value is freed at the end of this statement
+ | | creates a temporary which is freed while still in use
+ | using this value as a constant requires that borrow lasts for `'static`
+
+error[E0493]: destructors cannot be evaluated at compile-time
+ --> $DIR/static-drop-scope.rs:15:28
+ |
+LL | static EARLY_DROP_S: i32 = (WithDtor, 0).1;
+ | ^^^^^^^^^^^^^ - value is dropped here
+ | |
+ | statics cannot evaluate destructors
+
+error[E0493]: destructors cannot be evaluated at compile-time
+ --> $DIR/static-drop-scope.rs:18:27
+ |
+LL | const EARLY_DROP_C: i32 = (WithDtor, 0).1;
+ | ^^^^^^^^^^^^^ - value is dropped here
+ | |
+ | constants cannot evaluate destructors
+
+error[E0493]: destructors cannot be evaluated at compile-time
+ --> $DIR/static-drop-scope.rs:21:24
+ |
+LL | const fn const_drop<T>(_: T) {}
+ | ^ - value is dropped here
+ | |
+ | constant functions cannot evaluate destructors
+
+error[E0493]: destructors cannot be evaluated at compile-time
+ --> $DIR/static-drop-scope.rs:25:5
+ |
+LL | (x, ()).1
+ | ^^^^^^^ constant functions cannot evaluate destructors
+LL |
+LL | }
+ | - value is dropped here
+
+error[E0493]: destructors cannot be evaluated at compile-time
+ --> $DIR/static-drop-scope.rs:29:34
+ |
+LL | const EARLY_DROP_C_OPTION: i32 = (Some(WithDtor), 0).1;
+ | ^^^^^^^^^^^^^^^^^^^ - value is dropped here
+ | |
+ | constants cannot evaluate destructors
+
+error[E0493]: destructors cannot be evaluated at compile-time
+ --> $DIR/static-drop-scope.rs:34:43
+ |
+LL | const EARLY_DROP_C_OPTION_CONSTANT: i32 = (HELPER, 0).1;
+ | ^^^^^^^^^^^ - value is dropped here
+ | |
+ | constants cannot evaluate destructors
+
+error: aborting due to 10 previous errors
+
+Some errors have detailed explanations: E0493, E0716.
+For more information about an error, try `rustc --explain E0493`.