llvm-for-llvmta/tools/clang/test/CodeGenObjC/debug-info-selector.m

16 lines
222 B
Mathematica
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
// Radar 8494540
// CHECK: objc_selector
@interface MyClass {
}
- (id)init;
@end
@implementation MyClass
- (id) init
{
return self;
}
@end