MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / dummy

Function dummy

tests/ConstexprFunctionHandlerTest.cpp:12–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10
11
12int dummy(int n)
13{
14 return n <= 1? 1 : (n * dummy(n - 1));
15}
16
17
18constexpr float Get()

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected