blob: f2a711aeb7135f7e269ef39cf6a8129b6f3ab66b [file] [log] [blame]
/* PR c/7776 */
/* { dg-do compile } */
/* { dg-options "-Wall -Wno-address" } */
int test1(char *ptr)
{
return ptr == "foo";
}
int test2()
{
return "foo" != (const char*)0;
}
int test3()
{
return "foo" == (const char*)0;
}
int test4()
{
return (const char*)0 != "foo";
}
int test5()
{
return (const char*)0 == "foo";
}