6 lines
114 B
C++
6 lines
114 B
C++
int functionWithStaticConstant() {
|
|
static const int StaticConstant = 0;
|
|
return StaticConstant;
|
|
}
|
|
|