xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/2010-05-12-PtrToMember-Dbg.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 //RUN: %clang_cc1 -emit-llvm -g -o - %s | FileCheck %s
2 //CHECK: DW_TAG_auto_variable
3 class Foo
4 {
5  public:
6   int x;
7   int y;
Foo(int i,int j)8   Foo (int i, int j) { x = i; y = j; }
9 };
10 
11 
12 Foo foo(10, 11);
13 
main()14 int main() {
15   int Foo::* pmi = &Foo::y;
16   return foo.*pmi;
17 }
18