Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / resources / sksl / errors / StaticSwitchWithConditionalContinue.sksl
1 uniform half4 testInputs;
2
3 void test_continue() { for (;;) { @switch (1) { case 1: if (testInputs.x > 3) continue; } } }
4
5 /*%%*
6 static switch contains non-static conditional exit
7 *%%*/