bolt/deps/llvm-18.1.8/clang/test/Analysis/block-in-critical-section.m
2025-02-14 19:21:04 +01:00

10 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];
}