(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
pr85015.C
// PR c++/85015
// { dg-do compile { target c++11 } }
// { dg-options "" }

void
foo ()
{
  int &&c = v + 1;		// { dg-error "was not declared in this scope" }
  struct S {			// { dg-message "declared here" "" { target *-*-* } .-1 }
    void bar () { int a[c]; }	// { dg-error "use of local variable with automatic storage from containing function" }
  } e;
}