// RUN: %clang_cc1 -fsyntax-only -verify -Wno-strict-prototypes %s
int x ; // expected-warning {{'constructor' attribute only applies to functions}}
int ;
int ;
int ; // expected-error {{'constructor' attribute takes no more than 1 argument}}
int ; // expected-error {{'constructor' attribute requires an integer constant}}
int ; // expected-error {{integer constant expression evaluates to value 4294967296 that cannot be represented in a 32-bit unsigned integer type}}
int x ; // expected-warning {{'destructor' attribute only applies to functions}}
int ;
int ;
int ; // expected-error {{'destructor' attribute takes no more than 1 argument}}
int ; // expected-error {{'destructor' attribute requires an integer constant}}
void ;