xref: /freebsd/contrib/libdiff/test/test124.right-p.txt (revision e38f2308273c8a51ec45f013d22c963590917cca)
1static void
2doSomethingThenPrintHello(int test)
3{
4	test = test << 4;
5	if (test % 8 == 6) {
6		return;
7	}
8
9	print("goodbye\n");
10}
11
12struct testfile *
13return_test(int test) {
14	return test*2;
15}
16