aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/vla11.C
blob: e448be325fb4a831997fc41520b1bd15ff314569 (plain)
1
2
3
4
5
6
7
8
9
// Test that auto works with VLAs.
// { dg-do compile { target c++11 } }
// { dg-options "" { target { ! c++1y } } }

void bar(int n)
{
  float loc2[n];
  auto&& range = loc2;
}