xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_122.c (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 /*	$NetBSD: msg_122.c,v 1.4 2021/04/06 21:32:57 rillig Exp $	*/
2 # 3 "msg_122.c"
3 
4 // Test for message: shift amount %llu is greater than bit-size %llu of '%s' [122]
5 
6 int
7 example(int x)
8 {
9 	return x << 129;		/* expect: 122 */
10 }
11