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
/
torture
/
pr91270.C
blob
60d766e9e9f0ab808c5c8bba0e6918fb1420c36b
1
/* { dg-do compile } */
2
3
struct S {
4
~S();
5
};
6
int a = 123;
7
void fn1() {
8
S *s = new S[a];
9
delete[] s;
10
}