Index: uspace/dist/src/bithenge/test-repeat.bh
===================================================================
--- uspace/dist/src/bithenge/test-repeat.bh	(revision 0caaaa0055efb2a5487b877b87dd4fa1094d049b)
+++ uspace/dist/src/bithenge/test-repeat.bh	(revision e3f2765d1f9f4db04f79955850663d979327ea95)
@@ -1,3 +1,3 @@
-transform main = struct {
+transform with_count = struct {
 	.none <- repeat(0) { uint8 };
 	.one <- repeat(1) { uint8 };
@@ -5,2 +5,12 @@
 	.many <- repeat(.count) { uint8 };
 };
+
+transform without_count = struct {
+	.error <- repeat { uint8 <- zero_terminated };
+	.end <- repeat { uint8 };
+};
+
+transform main = struct {
+	.with_count <- with_count;
+	.without_count <- without_count;
+};
