bolt/deps/llvm-18.1.8/clang/test/CodeGenObjC/debug-info-selector.m

15 lines
205 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
// CHECK: objc_selector
@interface MyClass {
}
- (id)init;
@end
@implementation MyClass
- (id) init
{
return self;
}
@end