aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaObjC/objc2-warn-weak-decl.m
blob: a29ff7b6e334fa9eecd87b2e635cb2dd175d0347 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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 (void)
{
  __weak id  local;  // expected-warning {{Objective-C GC does not allow weak variables on the stack}}
}