Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / tests / sksl / errors / IllegalRecursionMutual.glsl
1 ### Compilation failed:
2
3 error: 5: potential recursion (function call cycle) not allowed:
4         bool is_odd(int n)
5         bool is_even(int n)
6         bool is_odd(int n)
7 bool is_odd (int n) { return n == 0 ? false : is_even(n - 1); }
8                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9 1 error