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
/
gen-attrs-80.C
blob
edaa067667014bca21d4f1502322e90a233df72d
1
// { dg-do compile { target c++11 } }
2
3
void
4
foo (int n)
5
{
6
auto a = new int [n] [[]];
7
auto b = new int [n] [[]] [42] [[]] [1] [[]];
8
delete[] b;
9
delete[] a;
10
}