blob: 8a33d08d860877f3612bf93a5173244b610e35c4 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -ftracer" } */
int **fn1 () __attribute__ ((__const__));
int main ()
{
int i;
i = 0;
for (;; i++)
if (*fn1 ()[i] && !'a' <= 0 && i <= 'z' || *fn1 ()[0] && 'a' <= 'z')
return 0;
}