about summary refs log tree commit diff
path: root/src/librustc
diff options
context:
space:
mode:
authorWesley Wiser <wwiser@gmail.com>2019-09-17 05:48:38 -0400
committerWesley Wiser <wwiser@gmail.com>2019-09-27 20:11:13 -0400
commit4e58e2e3a3f3cda15bad6cbb87242eaf555dda85 (patch)
treed5fdb658c1a81fbd60ce2ef56ddb226f03de5752 /src/librustc
parent93335141021df7d53ba597f6315a8014fe21195f (diff)
downloadrust-4e58e2e3a3f3cda15bad6cbb87242eaf555dda85.tar.gz
rust-4e58e2e3a3f3cda15bad6cbb87242eaf555dda85.zip
Work around for #64506
Diffstat (limited to 'src/librustc')
-rw-r--r--src/librustc/mir/interpret/error.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/librustc/mir/interpret/error.rs b/src/librustc/mir/interpret/error.rs
index 0328f93859b..4da5d979cc3 100644
--- a/src/librustc/mir/interpret/error.rs
+++ b/src/librustc/mir/interpret/error.rs
@@ -397,6 +397,10 @@ pub enum UnsupportedOpInfo<'tcx> {
     /// while evaluating `const` items.
     ReadOfStaticInConst,
 
+    /// FIXME(#64506) Error used to work around accessing projections of
+    /// uninhabited types.
+    UninhabitedValue,
+
     // -- Everything below is not categorized yet --
     FunctionAbiMismatch(Abi, Abi),
     FunctionArgMismatch(Ty<'tcx>, Ty<'tcx>),
@@ -564,6 +568,8 @@ impl fmt::Debug for UnsupportedOpInfo<'tcx> {
                 write!(f, "{}", msg),
             ReadOfStaticInConst =>
                 write!(f, "tried to read from a static during const evaluation"),
+            UninhabitedValue =>
+                write!(f, "tried to use an uninhabited value"),
         }
     }
 }