summaryrefslogtreecommitdiffstats
path: root/tests/cpp-compiler/simple-c-compile.c
blob: 32b5561f1b498a151b9d386bcaa47d0af693bc86 (plain)
1
2
3
4
5
6
7
8
9
10
//TEST:SIMPLE: -entry main -target exe -pass-through c 

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

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