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