xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_136.c (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 /*	$NetBSD: msg_136.c,v 1.3 2021/01/31 11:12:07 rillig Exp $	*/
2 # 3 "msg_136.c"
3 
4 // Test for message: cannot do pointer arithmetic on operand of unknown size [136]
5 
6 struct incomplete;		/* expect: 233 */
7 
8 const struct incomplete *
9 example(const struct incomplete *ptr)
10 {
11 	return ptr + 5;		/* expect: 136 */
12 }
13