1*67e74705SXin Li // RUN: %clang_cc1 -triple=x86_64-unknown-linux -Wpragmas -verify %s 2*67e74705SXin Li 3*67e74705SXin Li // Check that pragma redefine_extname applies to C code only, and shouldn't be 4*67e74705SXin Li // applied to C++. 5*67e74705SXin Li #pragma redefine_extname foo_cpp bar_cpp foo_cpp()6*67e74705SXin Liextern int foo_cpp() { return 1; } // expected-warning {{#pragma redefine_extname is applicable to external C declarations only; not applied to function 'foo_cpp'}} 7