blob: 36813ba0f833b6a95c2c56289a1ea1c8279445ea [file] [log] [blame]
/*
* Check that -Wall works as intended
* RUN: llvmc -Wall %s -o %t
* RUN: %abs_tmp | grep hello
* XFAIL: vg_leak
*/
#include <stdio.h>
int main() {
printf("hello\n");
return 0;
}