blob: edf757b0ceac70f79fd4da7c85ca769157527d7e [file] [log] [blame]
/* APPLE LOCAL file 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;
}