Xamarin Public Jenkins (auto-signing) 468663ddbb Imported Upstream version 6.10.0.49
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
2020-01-16 16:38:04 +00:00

22 lines
592 B
Objective-C

// RUN: %check_clang_tidy %s misc-suspicious-semicolon %t
// This test checks if Objective-C 2.0 (@properties) and
// Automatic Reference Counting (ARC) are enabled for .m files
// checked via check_clang_tidy.py.
#if !__has_feature(objc_arc)
#error Objective-C ARC not enabled as expected
#endif
@interface Foo
@property (nonatomic, assign) int shouldDoStuff;
- (void)nop;
@end
void fail(Foo *f)
{
if(f.shouldDoStuff); [f nop];
// CHECK-MESSAGES: :[[@LINE-1]]:22: warning: potentially unintended semicolon [misc-suspicious-semicolon]
// CHECK-FIXES: if(f.shouldDoStuff) [f nop];
}