Revert "[ELF] Refine isExported/isPreemptible condition"
[llvm-project.git] / lldb / test / API / lang / objc / real-definition / Bar.h
blob5ee6acb2425e2467cd3860c7ab07c42d8b6c4de0
1 #import <Foundation/Foundation.h>
3 @class InternalClass;
5 @interface Bar : NSObject {
6 @private
7 InternalClass *storage;
10 - (NSString *)description;
12 @end