Exemple #1
0
int ttest_main()
{
	int i1 = nop1(1);
	nop3(i1);
	int i2 = nop2(2,3);
	nop3(i2);
	int i3 = nop1(4);
	nop3(i3);
	int i4 = nop2(5,6);
	return i1+i3+7;
}
Exemple #2
0
int test_main1()
{
	for(int i = 0; i< 100; i++)
	{
		nop3(i);
		for(int j=0; j < 22; j++)
		{
			nop3(nop2(i,j));
		}
	}
	return 5;
}
Exemple #3
0
int test_main()
{
//	test_class();
//	return 0;
	test_printf();
	return 0;
	test_api();
	return 0;
	//-----------
	//nop3(test_switch_case(9));
	//return 0;
	//-----------
	nop3(test_Struc());
	return 0;
	//-----------
	int buf[6][6];
	return test_Array(buf);
}
Exemple #4
0
 // Test #9: Warning
 foreach (BigTrivial t, bigTrivials) {
     nop3(t);
 }