Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / c-c++-common / pr19807-1.c
blob9dc685d6fbfe23180fe173784c02eef6aaa0ccad
1 /* { dg-do link } */
2 /* { dg-options "-O" } */
4 extern void link_error(void);
5 int main()
7 int a[4];
8 if (&a[2]-1 != &a[1])
9 link_error();
10 return 0;