blob: b1e8dab9244f8f0767e5e07da666aa5074581d41 [file] [log] [blame]
// RUN: %clang_cc1 -triple=x86_64-unknown-linux -Wpragmas -verify %s
// Check that pragma redefine_extname applies to external declarations only.
#pragma redefine_extname foo_static bar_static
static int foo_static() { return 1; } // expected-warning {{#pragma redefine_extname is applicable to external C declarations only; not applied to function 'foo_static'}}
unsigned __int128_t; // expected-error {{redefinition of '__int128_t' as different kind of symbol}}