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
/
initlist20.C
blob
0ee37e5864852754cf8cad0e55b36d147984bfac
1
// PR c++/40689
2
// { dg-do compile { target c++11 } }
3
4
class X
5
{
6
public:
7
X(): data {1,2,3,4,5} {}
8
private:
9
const short data[5];
10
};
11
12
int main()
13
{
14
const float * pData = new const float[4] { 1.5, 2.5, 3.5, 4.5 };
15
16
return 0;
17
}