blob: 6abd391dc2e8cfa590f76b013a61879e7675174a [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -Wthread-safety -Wno-objc-root-class %s
// Thread safety analysis used to crash when used with ObjC methods.
#include "thread-safety-analysis.h"
@interface MyInterface
- (void)doIt:(class Lock *)myLock;
@end
@implementation MyInterface
- (void)doIt:(class Lock *)myLock {
AutoLock lock(*myLock);
}
@end