This assertion fires when you have over 15-levels of nesting in your code. This is most likely because you have nested the choice-segments too deep (if-else-if-else-if-else...). This is indicative of a poor state machine design and reversal to the "spaghetti" code.
The assertion will be turned into a message box in the future releases, but still, the code won't be generated in such cases.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This assertion fires when you have over 15-levels of nesting in your code. This is most likely because you have nested the choice-segments too deep (if-else-if-else-if-else...). This is indicative of a poor state machine design and reversal to the "spaghetti" code.
The assertion will be turned into a message box in the future releases, but still, the code won't be generated in such cases.
Fixed in 4.1.0.
--MMS