blob: 8fde620e71e86e7d9db472050a7ee0baffe3c637 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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}}
}
|