Sign in
llvm
/
llvm-project
/
clang
/
e4866f916a76b3dff4ffceca57a56f9dbac29a40
/
.
/
test
/
DebugInfo
/
ObjC
/
selector.m
blob: 9946f3d0ff4269717fbf0be1ba44499cfaa6f266 [
file
] [
log
] [
blame
]
// 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