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