Files
cppipe/test/c_file.c
T
2025-06-06 18:00:38 +03:00

16 lines
161 B
C

#include <stdio.h>
int main()
{
int* x;
void* y = 0;
x = y; /* should only work on C */
if(x == 0)
{
printf("C compilation: OK!\n");
}
return 0;
}