summaryrefslogtreecommitdiffstats
path: root/tests/cpp-compiler/c-compile.c
blob: 75fdbdaa4857a709812c8b45d0ec457718419e4f (plain)
1
2
3
4
5
6
7
8
9
10
//TEST(smoke):CPP_COMPILER_EXECUTE: 

#include <stdlib.h>
#include <stdio.h>

int main(int argc, char** argv)
{
    printf("Hello World!\n");
	return 0;
}