msg_128.c revision 1.5
11.5Srillig/*	$NetBSD: msg_128.c,v 1.5 2022/06/22 19:23:18 rillig Exp $	*/
21.1Srillig# 3 "msg_128.c"
31.1Srillig
41.5Srillig// Test for message: operands of '%s' have incompatible pointer types to '%s' and '%s' [128]
51.1Srillig
61.3Srilligvoid
71.3Srilligconversion_to_unconst(const char *cstr)
81.3Srillig{
91.3Srillig	char *str;
101.5Srillig	/* expect+1: warning: operands of '=' have incompatible pointer types to 'char' and 'const char' [128] */
111.4Srillig	str = cstr;
121.3Srillig}
13