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