blob: 343dc6575a71757cb0850561f342264726b1c6c6 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -S %s -o %t-64.s
2// RUN: %clang_cc1 -S %s -o %t-32.s
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +00003
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}