blob: 2c72ea69929d037e595c20e8e12b9f0ba5eebfc7 [file] [log] [blame]
Mikhail Glushenkov5c98d822008-05-12 16:33:06 +00001/*
2 * Check that -Wall works as intended
Mikhail Glushenkov113ec352008-11-25 21:38:12 +00003 * RUN: llvmc -Wall %s -o %t
Mikhail Glushenkov5c98d822008-05-12 16:33:06 +00004 * RUN: ./%t | grep hello
5 */
6
7#include <stdio.h>
8
9int main() {
10 printf("hello\n");
11 return 0;
12}