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