2009-10-22 02:38:00 +08:00
|
|
|
// RUN: clang-cc -emit-llvm -o - %s
|
|
|
|
|
|
|
|
extern "C" int printf(...);
|
|
|
|
|
2009-10-22 05:01:47 +08:00
|
|
|
struct V {
|
|
|
|
double d;
|
|
|
|
int iV;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct B : virtual V{
|
|
|
|
double d;
|
|
|
|
int iB;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct B1 : virtual V{
|
|
|
|
double d;
|
|
|
|
int iB1;
|
|
|
|
};
|
|
|
|
|
|
|
|
class A : public B, public B1 {
|
2009-10-22 02:38:00 +08:00
|
|
|
public:
|
2009-10-22 07:45:42 +08:00
|
|
|
A() : f(1.0), d(2.0), Ai(3) {}
|
2009-10-22 02:38:00 +08:00
|
|
|
float f;
|
|
|
|
double d;
|
|
|
|
int Ai;
|
|
|
|
};
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
A a1;
|
|
|
|
int A::* pa = &A::Ai;
|
|
|
|
float A::* pf = &A::f;
|
|
|
|
double A::* pd = &A::d;
|
|
|
|
printf("%d %d %d\n", &A::Ai, &A::f, &A::d);
|
2009-10-22 05:01:47 +08:00
|
|
|
printf("%d\n", &A::B::iB);
|
|
|
|
printf("%d\n", &A::B1::iB1);
|
|
|
|
printf("%d\n", &A::f);
|
|
|
|
printf("%d\n", &A::B::iV);
|
|
|
|
printf("%d\n", &A::B1::iV);
|
|
|
|
printf("%d\n", &A::B::V::iV);
|
|
|
|
printf("%d\n", &A::B1::V::iV);
|
2009-10-22 07:45:42 +08:00
|
|
|
printf("%d, %f, %f \n", a1.*pa, a1.*pf, a1.*pd);
|
2009-10-22 02:38:00 +08:00
|
|
|
}
|