Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -emit-llvm-only -verify %s
      2 
      3 struct A { int a(); };
      4 typedef int B;
      5 void a() {
      6   A x;
      7   ((x.a))();
      8   ((x.*&A::a))();
      9   B y;
     10   // FIXME: Sema doesn't like this for some reason...
     11   //(y.~B)();
     12 }
     13