blob: 3edbf78112e6d80a9cd1186152d9a9d7e4a17888 [file] [log] [blame]
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00001/*
2 * Check that the 'sink' options work.
Mikhail Glushenkov113ec352008-11-25 21:38:12 +00003 * RUN: llvmc -v -Wall %s -o %t |& grep "Wall"
Mikhail Glushenkov34f37622008-05-30 06:23:29 +00004 * RUN: ./%t | grep hello
5 */
6
7#include <stdio.h>
8
9int main() {
10 printf("hello\n");
11 return 0;
12}