Remove ty_no_eq_after
diff --git a/src/path.rs b/src/path.rs
index fd85c21..6e68000 100644
--- a/src/path.rs
+++ b/src/path.rs
@@ -261,7 +261,7 @@
                 }
             }
 
-            Ok(GenericArgument::Type(input.parse_synom(ty_no_eq_after)?))
+            input.parse().map(GenericArgument::Type)
         }
     }
 
@@ -452,12 +452,6 @@
             Ok((None, path))
         }
     }
-
-    named!(pub ty_no_eq_after -> Type, do_parse!(
-        ty: syn!(Type) >>
-        not!(punct!(=)) >>
-        (ty)
-    ));
 }
 
 #[cfg(feature = "printing")]