blob: 5de52ba2203c488c9df1e191e2c0d8e9c8d6a494 [file] [log] [blame]
// RUN: clang-cc -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
struct S {
__weak id p; // expected-warning {{__weak attribute cannot be specified on a field declaration}}
};
int main ()
{
__weak id local; // expected-warning {{__weak attribute cannot be specified on an automatic variable}}
}