1// RUN: %clang_cc1 -verify %s -triple i686-apple-darwin
2// Insist upon warnings for inappropriate weak attributes.
3
4// O.K.
5extern int ext_weak_import __attribute__ ((__weak_import__));
6
7// These are inappropriate, and should generate warnings:
8int decl_weak_import __attribute__ ((__weak_import__)); // expected-warning {{'weak_import' attribute cannot be specified on a definition}}
9int decl_initialized_weak_import __attribute__ ((__weak_import__)) = 13; // expected-warning {{'weak_import' attribute cannot be specified on a definition}}
10
11// O.K.
12extern int ext_f(void) __attribute__ ((__weak_import__));
13
14// These are inappropriate, and should generate warnings:
15int def_f(void) __attribute__ ((__weak_import__));
16int __attribute__ ((__weak_import__)) decl_f(void) {return 0;};
17