clang-tidy-readability-iden.../test_StaticConstant.cpp
2019-04-24 16:46:26 +03:00

6 lines
114 B
C++

int functionWithStaticConstant() {
static const int StaticConstant = 0;
return StaticConstant;
}