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