Commit 5a99c3a6 by Gabriel Dos Reis

New test from GNATS.

From-SVN: r44801
parent f841565e
// { dg-do run }
// { dg-options -fomit-frame-pointer }
#include <iostream>
class Bug
{
};
int throw_bug()
{
throw Bug();
return 0;
}
int main()
{
try {
std::cout << throw_bug();
} catch (Bug bug) {
};
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment