aboutsummaryrefslogtreecommitdiff
path: root/clang/test/DebugInfo/ObjC/selector.m
blob: 9946f3d0ff4269717fbf0be1ba44499cfaa6f266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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