scalar.c 140 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 #include <stdlib.h> int main() { int a; #pragma scop a = 1; #pragma endscop if (a != 1) return EXIT_FAILURE; return EXIT_SUCCESS; }