Files
qt-creator/tests/auto/cplusplus/preprocessor/data/noPP.2.cpp
T

27 lines
324 B
C++
Raw Normal View History

2012-06-20 15:22:02 +02:00
void hey(int a) {
int b = a + 10;
b;
}
class hello
{
public:
bool doit() { return true; }
bool dothat();
void run();
};
bool hello::dothat()
{
bool should = true;
if (should) {
int i = 10;
while (i > 0) {
run();
--i;
}
}
return false;
}