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

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

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