File: tst-unique4.cc

package info (click to toggle)
glibc 2.42-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 311,572 kB
  • sloc: ansic: 1,060,594; asm: 238,093; makefile: 20,949; python: 13,508; sh: 11,823; cpp: 5,188; awk: 1,794; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (53 lines) | stat: -rw-r--r-- 1,258 bytes parent folder | download | duplicates (5)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// BZ 12511
#include "tst-unique4.h"

#include <cstdio>

extern template struct S<1>;
extern template struct S<2>;
extern template struct S<3>;
extern template struct S<4>;
extern template struct S<5>;
extern template struct S<6>;
extern template struct S<7>;
extern template struct S<8>;
extern template struct S<9>;
extern template struct S<10>;
extern template struct S<11>;
extern template struct S<12>;
extern template struct S<13>;
extern template struct S<14>;
extern template struct S<15>;
extern template struct S<16>;
extern template struct S<17>;
extern template struct S<18>;
extern template struct S<19>;
extern template struct S<20>;
extern template struct S<21>;
extern template struct S<22>;
extern template struct S<23>;
extern template struct S<24>;

static int a[24] =
  {
    S<1>::i, S<2>::i, S<3>::i, S<4>::i, S<5>::i, S<6>::i, S<7>::i, S<8>::i,
    S<9>::i, S<10>::i, S<11>::i, S<12>::i, S<13>::i, S<14>::i, S<15>::i,
    S<16>::i, S<17>::i, S<18>::i, S<19>::i, S<20>::i, S<21>::i, S<22>::i,
    S<23>::i, S<24>::i
  };

int
main (void)
{
  int result = 0;
  for (int i = 0; i < 24; ++i)
    {
      printf("%d ", a[i]);
      result |= a[i] != i + 1;
    }

  printf("\n%d\n", S<1>::j);
  result |= S<1>::j != -1;

  return result;
}