summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/assert-type-intrinsics.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/assert-type-intrinsics.stderr')
-rw-r--r--src/test/ui/consts/assert-type-intrinsics.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/consts/assert-type-intrinsics.stderr b/src/test/ui/consts/assert-type-intrinsics.stderr
deleted file mode 100644
index f92f9fda0..000000000
--- a/src/test/ui/consts/assert-type-intrinsics.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-error[E0080]: evaluation of constant value failed
- --> $DIR/assert-type-intrinsics.rs:12:9
- |
-LL | MaybeUninit::<!>::uninit().assume_init();
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ aborted execution: attempted to instantiate uninhabited type `!`
-
-error[E0080]: evaluation of constant value failed
- --> $DIR/assert-type-intrinsics.rs:16:9
- |
-LL | intrinsics::assert_uninit_valid::<&'static i32>();
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ aborted execution: attempted to leave type `&i32` uninitialized, which is invalid
-
-error[E0080]: evaluation of constant value failed
- --> $DIR/assert-type-intrinsics.rs:20:9
- |
-LL | intrinsics::assert_zero_valid::<&'static i32>();
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ aborted execution: attempted to zero-initialize type `&i32`, which is invalid
-
-error: aborting due to 3 previous errors
-
-For more information about this error, try `rustc --explain E0080`.