mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-18 10:24:30 +08:00
pass58-frag.cxx: New test for heisenbug 19319.
2005-09-23 Frank Ch. Eigler <fche@elastic.org> * testsuite/libmudflap.c++/pass58-frag.cxx: New test for heisenbug 19319. From-SVN: r104587
This commit is contained in:
parent
1ea63ef8be
commit
337dc8ca5e
@ -1,3 +1,7 @@
|
||||
2005-09-23 Frank Ch. Eigler <fche@elastic.org>
|
||||
|
||||
* testsuite/libmudflap.c++/pass58-frag.cxx: New test for heisenbug 19319.
|
||||
|
||||
2005-09-23 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* aclocal.m4, configure: Rebuilt.
|
||||
|
12
libmudflap/testsuite/libmudflap.c++/pass58-frag.cxx
Normal file
12
libmudflap/testsuite/libmudflap.c++/pass58-frag.cxx
Normal file
@ -0,0 +1,12 @@
|
||||
// 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user