debug-info-this.cpp revision 97edcb639347a4770e59af66d20abcd2b37bb4e5
1// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
2// Radar 9239104
3class Class
4{
5public:
6//CHECK: DW_TAG_const_type
7    int foo (int p) const {
8        return p+m_int;
9    }
10
11protected:
12    int m_int;
13};
14
15Class c;
16