xref: /aosp_15_r20/external/skia/tests/sksl/errors/IllegalRecursionMutual.glsl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1### Compilation failed:
2
3error: 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)
7bool is_odd (int n) { return n == 0 ? false : is_even(n - 1); }
8                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
91 error
10