We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 300da9a commit 3e2763aCopy full SHA for 3e2763a
compiler/rustc_type_ir/src/outlives.rs
@@ -68,6 +68,9 @@ struct OutlivesCollector<'a, I: Interner> {
68
}
69
70
impl<I: Interner> TypeVisitor<I> for OutlivesCollector<'_, I> {
71
+ #[cfg(not(feature = "nightly"))]
72
+ type Result = ();
73
+
74
fn visit_ty(&mut self, ty: I::Ty) -> Self::Result {
75
if !self.visited.insert(ty) {
76
return;
0 commit comments