blob: 86acdc6bf0268bacd0a60e925affbae7a36e2404 [file] [log] [blame]
// { dg-do assemble }
// Gives ICE 109
// From: Klaus-Georg Adams <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
// Reported against EGCS snaps 98/06/28.
namespace std { }
using namespace std;
int main()
{
try {
}
catch (bad_alloc) { // { dg-error "" }
return 1;
}
return 0;
}