1uniform half4 testInputs; 2 3void test_continue() { for (;;) { @switch (1) { case 1: if (testInputs.x > 3) continue; } } } 4