// RUN: %clang_cc1 -verify %s -triple i686-apple-darwin
// Insist upon warnings for inappropriate weak attributes.
// O.K.
extern int ext_weak_import ;
// These are inappropriate, and should generate warnings:
int decl_weak_import ; // expected-warning {{'weak_import' attribute cannot be specified on a definition}}
int decl_initialized_weak_import = 13; // expected-warning {{'weak_import' attribute cannot be specified on a definition}}
// O.K.
extern int ;
// These are inappropriate, and should generate warnings:
int ;
int ;