]> git.proxmox.com Git - rustc.git/blob - src/llvm/tools/clang/test/CodeGenObjC/debug-info-selector.m
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / CodeGenObjC / debug-info-selector.m
1 // RUN: %clang_cc1 -emit-llvm -g %s -o - | FileCheck %s
2 // Radar 8494540
3
4 // CHECK: objc_selector
5 @interface MyClass {
6 }
7 - (id)init;
8 @end
9
10 @implementation MyClass
11 - (id) init
12 {
13 return self;
14 }
15 @end