blob: 2054137fe94116d69a526aa57016dfd5c89e220a [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm-only -verify %s
Eli Friedman8aaff692009-12-08 02:09:46 +00002
3struct A { int a(); };
4typedef int B;
5void 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}