468663ddbb
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
14 lines
140 B
C
14 lines
140 B
C
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
int a;
|
|
#pragma scop
|
|
a = 1;
|
|
#pragma endscop
|
|
if (a != 1)
|
|
return EXIT_FAILURE;
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|