// RUN: %clang_cc1 %s -verify -fsyntax-only
// See also attr-loader-uninitialized.cpp
int good ;
static int local_ok ;
int hidden_ok ;
const int can_still_be_const ;
extern int external_rejected ;
// expected-error@-1 {{variable 'external_rejected' cannot be declared both 'extern' and with the 'loader_uninitialized' attribute}}
;
extern ;
// expected-error@-1 {{variable 'incomplete_external_rejected' cannot be declared both 'extern' and with the 'loader_uninitialized' attribute}}
int noargs ;
// expected-error@-1 {{'loader_uninitialized' attribute takes no arguments}}
int init_rejected = 42;
// expected-error@-1 {{variable with 'loader_uninitialized' attribute cannot have an initializer}}
int declaration_then_uninit_ok;
int declaration_then_uninit_ok ;
int definition_then_uninit_rejected = 0;
int definition_then_uninit_rejected ;
// expected-error@-1 {{redeclaration cannot add 'loader_uninitialized' attribute}}
// expected-note@-3 {{previous definition is here}}
int tentative_repeated_ok ;
int tentative_repeated_ok ;
__private_extern__ int private_extern_can_be_initialised = 10;
__private_extern__ int therefore_uninit_private_extern_ok ;
__private_extern__ int initialized_private_extern_rejected = 5;
// expected-error@-1 {{variable with 'loader_uninitialized' attribute cannot have an initializer}}
extern int extern_hidden ;
// expected-error@-1 {{variable 'extern_hidden' cannot be declared both 'extern' and with the 'loader_uninitialized' attribute}}
;
struct Incomplete incomplete ;
// expected-error@-1 {{variable has incomplete type 'struct Incomplete'}}
// expected-note@-3 {{forward declaration of 'struct Incomplete'}}