[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / synchronized.m
blob21ffc328b359333d922361a534eac3a16f448b4f
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
3 @interface PBXTrackableTaskManager @end
5 @implementation PBXTrackableTaskManager
6 - (id) init { return 0; }
7 - (void) unregisterTask:(id) task {
8   @synchronized (self) {
9   id taskID = [task taskIdentifier];  // expected-warning {{method '-taskIdentifier' not found (return type defaults to 'id')}}
10   }
12 @end
15 struct x { int a; } b;
17 void test1(void) {
18   @synchronized (b) {  // expected-error {{@synchronized requires an Objective-C object type ('struct x' invalid)}}
19   }
21   @synchronized (42) {  // expected-error {{@synchronized requires an Objective-C object type ('int' invalid)}}
22   }