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
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-98295.C
blob
930bd5a67dac4a570239edd54473e309d04618a6
1
// PR c++/98295
2
// { dg-do compile { target c++11 } }
3
4
struct A { constexpr A(); };
5
6
void f() {
7
A b[2][3];
8
[b] { };
9
}
10
11
constexpr A::A() {}