Files
cppipe/test/c_file.c
T
2024-05-27 15:35:24 +03:00

16 lines
160 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;
}