update functional test cases

This commit is contained in:
Laszlo Nagy
2017-04-27 22:00:36 +10:00
parent e879e36111
commit ecb003b939
55 changed files with 971 additions and 325 deletions

View File

@@ -0,0 +1,30 @@
#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;
}
}
}