aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/pr49847.C
blob: 42bd5a18159a99b37908455dc5f4418696db80ce (plain)
1
2
3
4
5
6
7
/* { dg-do compile } */
/* { dg-options "-O -fnon-call-exceptions -Wno-return-type" } */
int f (float g)
{
  try { return g >= 0; }
  catch (...) {}
}