blob: 67642ac3bebe1d4765d73ace15e2a1375681c765 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// RUN: %clang_cc1 -emit-llvm -g %s -o - | FileCheck %s
// Radar 8494540
// CHECK: objc_selector
@interface MyClass {
}
- (id)init;
@end
@implementation MyClass
- (id) init
{
return self;
}
@end
|