0103: Expected a switch case
Compiler expected the word case
or default
but found something else.
Switch statement syntax only allows the code to be placed after case
or default
keywords. Case blocks don't require the end
keyword.
Possible solutions:
check your code and make sure you follow the switch statement syntax:
Last updated