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