[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / warn-forward-class-attr-deprecated.m
blobcb118c3caf4bfecae27bf9229384b8576fa7e36e
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2 // rdar://10290322
4 @class ABGroupImportFilesScope; // expected-note {{forward declaration of class here}}
6 @interface I1
7 - (id) filenames __attribute__((deprecated)); // expected-note {{'filenames' has been explicitly marked deprecated here}}
8 @end
10 @interface I2
11 - (id) Meth : (ABGroupImportFilesScope*) scope;
12 - (id) filenames __attribute__((deprecated));
13 - (id)initWithAccount: (id)account filenames:(id)filenames;
14 @end
16 @implementation I2
17 - (id) Meth : (ABGroupImportFilesScope*) scope
19   id p =  [self initWithAccount : 0 filenames :[scope filenames]]; // expected-warning {{'filenames' may be deprecated because the receiver type is unknown}}
20   return 0;
22 - (id) filenames { return 0; }
23 - (id)initWithAccount: (id)account filenames:(id)filenames { return 0; }
24 @end