1/* $NetBSD: msg_121.c,v 1.3 2021/01/31 11:12:07 rillig Exp $ */ 2# 3 "msg_121.c" 3 4// Test for message: negative shift [121] 5 6int 7example(int x) 8{ 9 return x << (3 - 5); /* expect: 121 */ 10} 11