blob: 3c82f78d08b5f1ac5e7b89da62953bd3e1cd0d69 [file] [log] [blame]
// RUN: clang-cc -fnext-runtime -emit-llvm -o %t %s
@interface Test { }
+ (Test *)crash;
+ (void)setCrash: (int)value;
@end
@implementation Test
static int _value;
- (void)cachesPath
{
static Test *cachesPath;
if (!cachesPath) {
Test *crash = Test.crash;
}
}
+ (Test *)crash{ return 0; }
+ (void)setCrash: (int)value{ _value = value; }
@end