msg_128.c revision 1.4
1/*	$NetBSD: msg_128.c,v 1.4 2022/06/16 16:58:36 rillig Exp $	*/
2# 3 "msg_128.c"
3
4// Test for message: operands have incompatible pointer types, op %s (%s != %s) [128]
5
6void
7conversion_to_unconst(const char *cstr)
8{
9	char *str;
10	/* expect+1: warning: operands have incompatible pointer types, op = (char != const char) [128] */
11	str = cstr;
12}
13