aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/gcov/gcov-7.C
blob: 334db1837c85266e00ce2e555b861fb668be4b18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* Check that Exception handler specification is not
   mapped to the curly braces below the function
   declaration.  */

/* { dg-options "-fprofile-arcs -ftest-coverage" } */
/* { dg-do run { target native } } */

struct foo
{
  foo ()
#if __cplusplus <= 201402L
    throw (int)			// { dg-warning "deprecated" "" { target { c++11 && { ! c++17 } } } }
#endif
    {			/* count (-) */
      throw (1);
    }
};

int main ()
{
  try
    {
      foo f;
    }
  catch ( ...)
    {
      return 0;
    }
}

/* { dg-final { run-gcov gcov-7.C } } */