fune/tools/clang-tidy/test/clang-analyzer-security.FloatLoopCounter.cpp
2018-11-30 06:36:07 -05:00

3 lines
64 B
C++

void test() {
for (float x = 0.1f; x <= 1.0f; x += 0.1f) {}
}