[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / clang / test / SemaObjC / multiple-property-deprecated-decl.m
blob7e8ff56446204a110df6c2c2522dfc1814b39877
1 // RUN: %clang_cc1  -fsyntax-only -triple x86_64-apple-macosx10.11 -verify -Wno-objc-root-class %s
2 // RUN: %clang_cc1 -x objective-c++ -fsyntax-only -triple x86_64-apple-macosx10.11 -verify -Wno-objc-root-class %s
3 // expected-no-diagnostics
4  
5 @protocol NSFileManagerDelegate @end
7 @interface NSFileManager 
8 @property (assign) id <NSFileManagerDelegate> delegate;
9 @end
11 @interface NSFontManager
12 @property (assign) id delegate __attribute__((availability(macosx,introduced=10.0 ,deprecated=10.11,message="" "NSFontManager doesn't have any delegate method. This property should not be used.")));
14 @end
16 id Test20408445(id p) {
17         return [p delegate];