16 lines
200 B
Mathematica
16 lines
200 B
Mathematica
|
// 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
|