1/* $NetBSD: msg_146.c,v 1.3 2021/01/31 11:12:07 rillig Exp $ */ 2# 3 "msg_146.c" 3 4// Test for message: cannot take size/alignment of void [146] 5 6unsigned long 7example(void *ptr) 8{ 9 return sizeof(*ptr); /* expect: 146 */ 10} 11