blob: 6abd391dc2e8cfa590f76b013a61879e7675174a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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
|