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

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

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