blob: 4882a8678e2815bf00770fe72cde340f79bda39e [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -S %s -o %t-64.s
2// RUN: clang-cc -S %s -o %t-32.s
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +00003// RUN: true
4
5extern "C" int printf(...);
6
7struct S {
8 S() { printf("S::S\n"); }
9};
10
11struct A {
12 double x;
13 A() : x(), y(), s() { printf("x = %f y = %x \n", x, y); }
14 int *y;
15 S s;
16};
17
18A a;
19
20int main() {
21}