17 lines · cpp
1// Static function2namespace {3static long StaticFunction(int a)4{5 return 2;6}7}8 9// Inlined function10static inline int InlinedFunction(long a) { return 10; }11 12void FunctionCall()13{14 StaticFunction(1);15 InlinedFunction(1);16}17