A case statement is statically known to not select any branch, because none of the items match the known
constant expression and there is no default label.
module fly;
always_comb begin
case (1)
2: begin end
3: begin end
4: begin end
endcase
end
endmodule