1/* $NetBSD: msg_128.c,v 1.3 2021/03/16 23:12:30 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 str = cstr; /* expect: 128 */ 11} 12