summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/bugprone-too-small-loop-variable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/clang-tidy/test/bugprone-too-small-loop-variable.cpp')
-rw-r--r--tools/clang-tidy/test/bugprone-too-small-loop-variable.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/clang-tidy/test/bugprone-too-small-loop-variable.cpp b/tools/clang-tidy/test/bugprone-too-small-loop-variable.cpp
new file mode 100644
index 0000000000..4dc8ed7a22
--- /dev/null
+++ b/tools/clang-tidy/test/bugprone-too-small-loop-variable.cpp
@@ -0,0 +1,4 @@
+int main() {
+ long size = 294967296l;
+ for (short i = 0; i < size; ++i) {}
+}