Navigation: X# Documentation > X# Compiler Errors and Warnings
Warning XS9076
Empty CASE statement.
This warning will be shown when you have a CASE statement with only an OTHERWISE block, such as in the code below
FUNCTION Start AS VOID LOCAL i AS INT i := 10 DO CASE // <-- Warning 9076 here OTHERWISE ? i ENDCASE WAIT RETURN