hanchenye-llvm-project/clang/test/Analysis/block-in-critical-section.m

11 lines
246 B
Objective-C

// RUN: %clang_analyze_cc1 -analyzer-checker=core,alpha.unix.BlockInCriticalSection -verify -Wno-objc-root-class %s
// expected-no-diagnostics
@interface SomeClass
-(void)someMethod;
@end
void shouldNotCrash(SomeClass *o) {
[o someMethod];
}