blob: 871a0e97adeb9934378b057c2ca6e3e47d275644 [file] [log] [blame]
/* APPLE LOCAL file -Wdiscard-qual 4086969 */
/* Test -Wno-discard-qual */
/* { dg-do compile } */
/* { dg-options "-Wno-discard-qual" } */
const char *a( void )
{
return "abc";
}
int main( void )
{
char *s = a();
return 0;
}