From-SVN: r33182
This commit is contained in:
Mark Mitchell 2000-04-16 04:25:18 +00:00
parent 8bfecb841a
commit 5ead1006da

View File

@ -0,0 +1,21 @@
// Build don't link:
// Special g++ Options: -O2
// Origin: scott snyder <snyder@fnal.gov>
// crash test - XFAIL *-*-*
void _S_initialize();
class locale
{
public:
locale() throw()
{ _S_initialize (); }
};
void foo(const locale& __loc);
void print (const int&)
{
foo(locale());
}