summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/gcov/gcov-3.h
blob: 1c7ca00dd612598af660d31ebe4e584d49ef488a (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
/* Leave unused lines for at least the length of the including source file. */



















struct T {
  int i;
  T() { i = 0; }
};

T t;

int foo()
{
  return t.i;                          /* count(1) */
}