diff --git a/src/librustdoc/clean/mod.rs b/src/librustdoc/clean/mod.rs index b4bfaa9afdab..467f34261ba7 100644 --- a/src/librustdoc/clean/mod.rs +++ b/src/librustdoc/clean/mod.rs @@ -506,7 +506,9 @@ impl<'tcx> Clean> for ty::ExistentialBounds<'tcx> { for bb in self.builtin_bounds.iter() { vec.push(bb.clean(cx)); } - // TODO projection bounds + + // FIXME(#20299) -- should do something with projection bounds + vec } }