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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb58.C
blob
04ec92a30afce9e6e6cbdf7af19b144e63d73b95
1
// { dg-do run }
2
// { dg-options "-w -fpermissive" }
3
// Test for g++ array init extension
4
5
class A {
6
public:
7
A(int i) {}
8
private:
9
A( const A & ) {}
10
};
11
12
main()
13
{
14
A *list = new A[10](4);
15
}