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
/
constexpr-ice18.C
blob
0b5ff701306e23d04e106b59d45ce7239dce82ee
1
// PR c++/67831
2
// { dg-do compile { target c++11 } }
3
4
struct Task {
5
struct TaskStaticData {
6
constexpr TaskStaticData() {}
7
} const &tsd;
8
constexpr Task() : tsd(TaskStaticData()) {}
9
};
10
11
Task tasks{Task()};