OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / vla1.C
1 // PR c++/29226
2 // { dg-options "" }
3
4 template <bool>
5 static int label (int w)
6 {
7   sizeof(int[w]);
8 }
9 int a = label<false>(1);