/* $NetBSD: msg_246.c,v 1.6 2025/02/20 20:59:34 rillig Exp $ */ # 3 "msg_246.c" // Test for message: dubious conversion of enum to '%s' [246] // This message is not used. /* lint1-extra-flags: -X 351 */ enum color { RED, GREEN, BLUE }; double to_double(enum color c) { return c; } void * to_pointer(enum color c) { /* expect+1: warning: illegal combination of pointer 'pointer to void' and integer 'enum color' for 'return' [183] */ return c; }