summaryrefslogtreecommitdiff
path: root/test/LLVMC/wall.c
blob: 2c72ea69929d037e595c20e8e12b9f0ba5eebfc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Check that -Wall works as intended
 * RUN: llvmc -Wall %s -o %t
 * RUN: ./%t | grep hello
 */

#include <stdio.h>

int main() {
    printf("hello\n");
    return 0;
}