Fixing parsing of XXhXXm formatted time after day/month/year
has been parsed.
diff --git a/dateutil/parser.py b/dateutil/parser.py
index 60daa9f..5f25a4d 100644
--- a/dateutil/parser.py
+++ b/dateutil/parser.py
@@ -368,7 +368,8 @@
                     len_li = len(l[i])
                     i += 1
                     if (len(ymd) == 3 and len_li in (2, 4)
-                        and (i >= len_l or l[i] != ':')):
+                        and (i >= len_l or (l[i] != ':' and
+                                            info.hms(l[i]) is None))):
                         # 19990101T23[59]
                         s = l[i-1]
                         res.hour = int(s[:2])
diff --git a/test.py b/test.py
index d28a9ca..fd4c39c 100644
--- a/test.py
+++ b/test.py
@@ -3350,6 +3350,10 @@
         self.assertEqual(parse("01m02h", default=self.default),
                          datetime(2003, 9, 25, 2, 1))
 
+    def testRandomFormat35(self):
+        self.assertEqual(parse("2004 10 Apr 11h30m", default=self.default),
+                         datetime(2004, 4, 10, 11, 30))
+
     def testIncreasingCTime(self):
         # This test will check 200 different years, every month, every day,
         # every hour, every minute, every second, and every weekday, using