msg_316.c revision 1.3
1/* $NetBSD: msg_316.c,v 1.3 2022/06/17 06:59:16 rillig Exp $ */ 2# 3 "msg_316.c" 3 4// Test for message: __FUNCTION__/__PRETTY_FUNCTION__ is a GCC extension [316] 5 6/* lint1-flags: -Sw */ 7 8void println(const char *); 9 10void debug(void) 11{ 12 /* expect+1: warning: __FUNCTION__/__PRETTY_FUNCTION__ is a GCC extension [316] */ 13 println(__FUNCTION__); 14 /* expect+1: warning: __FUNCTION__/__PRETTY_FUNCTION__ is a GCC extension [316] */ 15 println(__PRETTY_FUNCTION__); 16} 17