repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr87476-1.C
blob
31df51a228c355c65f0ca8449977694908275c71
1
// PR c++/87476
2
// { dg-do compile { target c++11 } }
3
4
template <int>
5
struct S {
6
void operator () () { constexpr unsigned char p[1] {}; }
7
};
8
9
void
10
foo ()
11
{
12
S<0>{} ();
13
}