1 /* Test diagnostics for VLA whose size folds to an integer constant at
2    file scope.  PR 39605.  */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
5 
6 #define FIRST ((void*)0x80)
7 #define LAST  ((void*)0x86)
8 
9 static int b[LAST-FIRST]; /* { dg-warning "variably modified 'b' at file scope" } */
10