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
/
pr48600.C
blob
b60a0a011eccee24cd1861bbe11f19c861e4e946
1
/* { dg-do compile } */
2
3
class mx {
4
public:
5
mx();
6
};
7
8
int main()
9
{
10
while (true) {
11
mx *bar = new mx;
12
mx *baz = new mx;
13
continue;
14
}
15
return 0;
16
}