repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
vla1.C
blob
fe93440f1f2630ba1b2dd638252b8561ab1c2f6d
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);