• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm-only -verify %s
2 
3 struct A { int a(); };
4 typedef int B;
a()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