]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/error.rs
Auto merge of #60386 - Goirad:sgx-ignore-tests, r=nikomatsakis
[rust.git] / src / libstd / error.rs
index 7cb830e751a77653295b4bcb0f6f6e8d9bb8d48c..62282006a40248df320c8eedc5c99c37b5b4683c 100644 (file)
@@ -201,11 +201,19 @@ fn source(&self) -> Option<&(dyn Error + 'static)> { None }
     #[unstable(feature = "error_type_id",
                reason = "this is memory unsafe to override in user code",
                issue = "60784")]
-    fn type_id(&self) -> TypeId where Self: 'static {
+    fn type_id(&self, _: private::Internal) -> TypeId where Self: 'static {
         TypeId::of::<Self>()
     }
 }
 
+mod private {
+    // This is a hack to prevent `type_id` from being overridden by `Error`
+    // implementations, since that can enable unsound downcasting.
+    #[unstable(feature = "error_type_id", issue = "60784")]
+    #[derive(Debug)]
+    pub struct Internal;
+}
+
 #[stable(feature = "rust1", since = "1.0.0")]
 impl<'a, E: Error + 'a> From<E> for Box<dyn Error + 'a> {
     /// Converts a type of [`Error`] into a box of dyn [`Error`].
@@ -575,7 +583,7 @@ pub fn is<T: Error + 'static>(&self) -> bool {
         let t = TypeId::of::<T>();
 
         // Get TypeId of the type in the trait object
-        let boxed = self.type_id();
+        let boxed = self.type_id(private::Internal);
 
         // Compare both TypeIds on equality
         t == boxed