1// RUN: %clang_cc1  -S %s -o %t-64.s
2// RUN: %clang_cc1  -S %s -o %t-32.s
3
4extern "C" int printf(...);
5
6struct S {
7  S() { printf("S::S\n"); }
8};
9
10struct A {
11  double x;
12  A() : x(), y(), s() { printf("x = %f y = %x \n", x, y); }
13  int *y;
14  S s;
15};
16
17A a;
18
19int main() {
20}
21