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; }