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