hanchenye-llvm-project/clang/test/Analysis/MissingDealloc_IBOutlet.m

21 lines
298 B
Objective-C

// RUN: clang -warn-objc-missing-dealloc '-DIBOutlet=__attribute__((iboutlet))' %s --verify
#ifndef IBOutlet
#define IBOutlet
#endif
@class NSWindow;
@interface NSObject {}
- (void)dealloc;
@end
@interface A : NSObject {
IBOutlet NSWindow *window;
}
@end
@implementation A // no-warning
@end