summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/debug-info-selector.m
blob: 13130b1bde5e09970881b2086ce2de08046a8e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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