Sign in
cobalt
/
cobalt
/
0c2b1d4428f8ae16220e86a16bebd07ff691a412
/
.
/
third_party
/
llvm-project
/
clang
/
test
/
CodeGenObjC
/
debug-info-selector.m
blob: 13130b1bde5e09970881b2086ce2de08046a8e26 [
file
] [
log
] [
blame
]
// 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