Allow cond_reduce without a sub parser
diff --git a/src/ty.rs b/src/ty.rs
index 61b4a4f..9189f38 100644
--- a/src/ty.rs
+++ b/src/ty.rs
@@ -532,7 +532,7 @@
                 }}
             ) >>
             // Just lifetimes like `'a + 'b` is not a TraitObject.
-            cond_reduce!(at_least_one_type(&bounds), epsilon!()) >>
+            cond_reduce!(at_least_one_type(&bounds)) >>
             (TypeTraitObject {
                 dyn_token: dyn_token,
                 bounds: bounds,