1*59c8e88eSDag-Erling Smørgravstatic void
2*59c8e88eSDag-Erling SmørgravdoSomethingThenPrintHello(int test)
3*59c8e88eSDag-Erling Smørgrav{
4*59c8e88eSDag-Erling Smørgrav	test = test << 4;
5*59c8e88eSDag-Erling Smørgrav	if (test % 8 == 6) {
6*59c8e88eSDag-Erling Smørgrav		return;
7*59c8e88eSDag-Erling Smørgrav	}
8*59c8e88eSDag-Erling Smørgrav
9*59c8e88eSDag-Erling Smørgrav	print("goodbye\n");
10*59c8e88eSDag-Erling Smørgrav}
11*59c8e88eSDag-Erling Smørgrav
12*59c8e88eSDag-Erling Smørgravstruct testfile *
13*59c8e88eSDag-Erling Smørgravreturn_test(int test) {
14*59c8e88eSDag-Erling Smørgrav	return test*2;
15*59c8e88eSDag-Erling Smørgrav}
16