blob: b79e1e7dfca781969c56f64d2cc7b73bf49ef828 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -verify -fsyntax-only %s
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002
3extern int g0 __attribute__((weak));
4extern int g1 __attribute__((weak_import));
5int g2 __attribute__((weak));
6int g3 __attribute__((weak_import)); // expected-warning {{'weak_import' attribute cannot be specified on a definition}}
7int __attribute__((weak_import)) g4(void);
8int __attribute__((weak_import)) g5(void) {
9}
10
11struct __attribute__((weak)) s0 {}; // expected-warning {{'weak' attribute only applies to variable and function types}}
12struct __attribute__((weak_import)) s1 {}; // expected-warning {{'weak_import' attribute only applies to variable and function types}}
13