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