Skip to content

Commit edb3f97

Browse files
committed
Fix ty::UnnormalizedProjection in rustdoc
1 parent 608adfc commit edb3f97

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/librustdoc/clean/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2737,6 +2737,7 @@ impl<'tcx> Clean<Type> for Ty<'tcx> {
27372737

27382738
ty::Closure(..) | ty::Generator(..) => Tuple(vec![]), // FIXME(pcwalton)
27392739

2740+
ty::UnnormalizedProjection(..) => panic!("UnnormalizedProjection"),
27402741
ty::GeneratorWitness(..) => panic!("GeneratorWitness"),
27412742
ty::Infer(..) => panic!("Infer"),
27422743
ty::Error => panic!("Error"),

0 commit comments

Comments
 (0)