blob: 1de6ad573d4a0b032c86e3f31b4d146ef4b0c613 [file] [log] [blame]
Chris Lattner3b427b32007-10-11 00:18:28 +00001// RUN: clang -fsyntax-only -verify %s
Anders Carlsson2d85f8b2007-10-10 20:50:11 +00002
3void f1(int a) {
4 if (a); // expected-warning {{if statement has empty body}}
5}
6
7void f2(int a) {
8 if (a) {}
9}