1*67e74705SXin Li // RUN: %clang_cc1 -fsyntax-only %s -verify 2*67e74705SXin Li 3*67e74705SXin Li char memset(); // expected-warning {{incompatible redeclaration of library function 'memset'}} expected-note{{'memset' is a builtin with type}} test()4*67e74705SXin Lichar test() { 5*67e74705SXin Li return memset(); 6*67e74705SXin Li } 7