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