blob: 3edbf78112e6d80a9cd1186152d9a9d7e4a17888 [file] [log] [blame]
/*
* Check that the 'sink' options work.
* RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
* RUN: ./%t | grep hello
*/
#include <stdio.h>
int main() {
printf("hello\n");
return 0;
}