[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / debug-info-this.cpp
bloba2842d021783ee3c55b974c4bf1eeaa910d172ca
1 // RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
2 // Radar 9239104
3 class Class
5 public:
6 //CHECK: DW_TAG_const_type
7 int foo (int p) const {
8 return p+m_int;
9 }
11 protected:
12 int m_int;
15 Class c;