Files
scan-build-mirror/tests/functional/cases/intercept/end-to-end/Input/lib/foo.cpp
2017-04-27 22:47:38 +10:00

31 lines
295 B
C++

#include "foo.h"
namespace acme
{
void t2(int i);
void t1()
{
for (int i = 0; i < 100; ++i)
{
if (98 == i)
{
t2(i);
break;
}
}
}
void t2(int i)
{
if (9 == i)
{
int k = i + 9;
--k;
return;
}
}
}