(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
nsdmi-local.C
// PR c++/55240
// { dg-do compile { target c++11 } }

int main()
{
    int q = 1;				 // { dg-message "declared here" }
    struct test { int x = q; } instance; // { dg-error "local variable" }
}