hanchenye-llvm-project/clang/test/Sema/if-empty-body.c

10 lines
157 B
C
Raw Normal View History

// RUN: clang -fsyntax-only -verify %s
void f1(int a) {
if (a); // expected-warning {{if statement has empty body}}
}
void f2(int a) {
if (a) {}
}