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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
crash27.C
blob
7aa0e593b1a13c41d5ee8779da8ee2dc6afaf383
1
// { dg-do assemble }
2
// GROUPS passed old-abort
3
class First {
4
public:
5
First(const First& a);
6
};
7
8
class Second {
9
int i;
10
First f;
11
public:
12
~Second() {}
13
Second func();
14
};
15
16
void foo()
17
{
18
extern Second x;
19
x = x.func();
20
}