Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Sema / memset-invalid.c
blob3532af835b23c826c08b75e241caf506b0b07244
1 // RUN: %clang_cc1 -fsyntax-only %s -verify
3 char memset(void); // expected-warning {{incompatible redeclaration of library function 'memset'}} expected-note{{'memset' is a builtin with type}}
4 char test(void) {
5 return memset();