about summary refs log tree commit diff
path: root/compiler/rustc_public
diff options
context:
space:
mode:
authortiif <pekyuan@gmail.com>2025-07-14 13:38:19 +0000
committertiif <pekyuan@gmail.com>2025-07-15 13:48:30 +0000
commit7356ff7517f4d95583f8fd6d631441893c87dd3f (patch)
tree113b85abcc797328526ba9a84c1cce7f3158df75 /compiler/rustc_public
parentdd067a689a05e50b80206536de22a2400277a7f8 (diff)
downloadrust-7356ff7517f4d95583f8fd6d631441893c87dd3f.tar.gz
rust-7356ff7517f4d95583f8fd6d631441893c87dd3f.zip
Implement other logics
Diffstat (limited to 'compiler/rustc_public')
-rw-r--r--compiler/rustc_public/src/unstable/convert/stable/ty.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_public/src/unstable/convert/stable/ty.rs b/compiler/rustc_public/src/unstable/convert/stable/ty.rs
index 75c29788787..6b226b8a24d 100644
--- a/compiler/rustc_public/src/unstable/convert/stable/ty.rs
+++ b/compiler/rustc_public/src/unstable/convert/stable/ty.rs
@@ -764,6 +764,9 @@ impl<'tcx> Stable<'tcx> for ty::ClauseKind<'tcx> {
             ClauseKind::HostEffect(..) => {
                 todo!()
             }
+            ClauseKind::UnstableFeature(_) => {
+                todo!()
+            }
         }
     }
 }