xref: /freebsd/contrib/libdiff/test/test124.right-p.txt (revision 5ca8e32633c4ffbbcd6762e5888b6a4ba0708c6c)
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