ZNTC0703: Only one default clause is allowed in a switch statement
ZNTC0703
Section titled “ZNTC0703”Only one default clause is allowed in a switch statement
Category: Parser: Statement/Control Flow
Reproduction
Section titled “Reproduction”switch(x) { default: break; default: break; }How to fix
Section titled “How to fix”See the error message for cause and resolution.