blob: 08b93a38bb229915817de69fa3898628ce59f937 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//TEST(smoke):CPP_COMPILER_EXECUTE:
#include <stdlib.h>
#include <stdio.h>
extern int thing;
int main(int argc, char** argv)
{
printf("Hello World %d!\n", thing);
return 0;
}
|