msg_133.c revision 1.4
11.4Srillig/* $NetBSD: msg_133.c,v 1.4 2022/06/16 16:58:36 rillig Exp $ */ 21.1Srillig# 3 "msg_133.c" 31.1Srillig 41.1Srillig// Test for message: conversion of pointer to '%s' loses bits [133] 51.1Srillig 61.2Srilligchar 71.2Srilligto_char(void *ptr) 81.2Srillig{ 91.4Srillig /* expect+1: warning: conversion of pointer to 'char' loses bits [133] */ 101.4Srillig return (char)ptr; 111.2Srillig} 12