Warning, file /frameworks/ktexteditor/autotests/input/indent_detect/4space.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #include <iostream>
0002 
0003 int main() {
0004     std::cout << "This is a test program for detecting indent, blah blah";
0005     for (int i = 0; i < 10; ++i) {
0006         if (i == 2) {
0007             i++;
0008         } else {
0009             i--;
0010         }
0011     }
0012     return 1;
0013 }