blob: 8fde620e71e86e7d9db472050a7ee0baffe3c637 [file] [log] [blame]
// RUN: clang -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}}
}