Index: applications/editors/josm/plugins/pbf/test/unit/org/openstreetmap/josm/plugins/pbf/io/PbfImporterTest.java
===================================================================
--- applications/editors/josm/plugins/pbf/test/unit/org/openstreetmap/josm/plugins/pbf/io/PbfImporterTest.java	(revision 33772)
+++ applications/editors/josm/plugins/pbf/test/unit/org/openstreetmap/josm/plugins/pbf/io/PbfImporterTest.java	(revision 34826)
@@ -80,3 +80,18 @@
         assertEquals(97, ds.getRelations().size());
     }
+    
+    /**
+     * Non-regression test for <a href="https://josm.openstreetmap.de/ticket/14545">Ticket #14545</a>.
+     * @throws Exception if an error occurs
+     */
+    @Test
+    public void testTicket14545() throws Exception {
+        DataSet ds = new PbfImporter().parseDataSet(TestUtils.getRegressionDataFile(14545, "reg14545.osm.pbf"));
+        assertNotNull(ds);
+        assertEquals(12, ds.getNodes().size());
+        assertEquals(2, ds.getWays().size());
+        assertEquals(1, ds.getRelations().size());
+    }
+
+    
 }
