Lines Matching refs:fib
151 constexpr int fib(int n) { return n > 1 ? fib(n-1) + fib(n-2) : n; }152 static_assert(fib(11) == 89, "");