# PRE: if
uint32 count

count := 0

group {
	count += 1

	noop
	actions {
		noop = retry

		retry {
			max_rtx_count = 3
		}
	}
}

if (!(count == 3)) {
	test_fail
}

success
