aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/initpri1_part_main.c
blob: bff58d75e68c10c574f0f532f6f84f3c975349e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-skip-if part { *-*-* } } */
/* Via the magic string "-std=*++" indicate that testing one (the default) C++ standard is sufficient.  */

int i;
int j;

int main () {
  if (i != 3)
    return 1;
  if (j != 1)
    __builtin_abort ();
  return 0;
}