repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
ext
/
complit1.C
blob
ab2b038fe341d89ac21d72969730db44969159ca
1
// PR c++/11063
2
// { dg-options "" }
3
4
class Foo
5
{
6
private:
7
const int val_[2];
8
9
public:
10
Foo(int, int);
11
};
12
13
Foo::Foo(int v0, int v1)
14
: val_((int[]) {v0, v1}) // { dg-error "" "" }
15
{
16
}