PR c++/65051
[official-gcc.git] / gcc / testsuite / g++.dg / ext / vla11.C
blobe733f481f3e32556bd55881c2f6280787b072eb0
1 // Test that auto works with VLAs.
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-Wno-vla" }
5 void bar(int n)
7   float loc2[n];
8   auto&& range = loc2;