7da0657fda
This relaxes our rules to allow calls to declared (but not yet defined) functions. With that rule change, we have to specifically detect static recursion and produce an error. Bug: skia:12137 Change-Id: I39cc281fcd73fb30014bc7b43043552623727e03 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/431537 Reviewed-by: John Stiles <johnstiles@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
7 lines
218 B
Plaintext
7 lines
218 B
Plaintext
// Expect 1 error
|
|
|
|
// Straightforward mutual recursion (not allowed)
|
|
bool is_even(int n);
|
|
bool is_odd (int n) { return n == 0 ? false : is_even(n - 1); }
|
|
bool is_even(int n) { return n == 0 ? true : is_odd (n - 1); }
|