f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
11 lines
414 B
Objective-C
11 lines
414 B
Objective-C
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
|
|
// RUN: %clang_cc1 -x objective-c++ -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 {{Objective-C GC does not allow weak variables on the stack}}
|
|
}
|
|
|