mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-05 01:34:12 +08:00
337dc8ca5e
2005-09-23 Frank Ch. Eigler <fche@elastic.org> * testsuite/libmudflap.c++/pass58-frag.cxx: New test for heisenbug 19319. From-SVN: r104587
13 lines
140 B
C++
13 lines
140 B
C++
// PR 19319
|
|
struct k {
|
|
int data;
|
|
k(int j): data(j) {}
|
|
};
|
|
k make_k () { return k(1); }
|
|
|
|
int main ()
|
|
{
|
|
k foo = make_k ();
|
|
return 0;
|
|
}
|