minix/external/bsd/llvm/dist/clang/test/CodeGenObjC/debug-info-selector.m

16 lines
200 B
Mathematica
Raw Normal View History

// 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