msg_136.c revision 1.2
1/* $NetBSD: msg_136.c,v 1.2 2021/01/08 21:25:03 rillig Exp $ */ 2# 3 "msg_136.c" 3 4// Test for message: cannot do pointer arithmetic on operand of unknown size [136] 5 6struct incomplete; 7 8const struct incomplete * 9example(const struct incomplete *ptr) 10{ 11 return ptr + 5; 12} 13