freebsd-nq/test/CodeGenCXX/trivial-constructor-init.cpp

21 lines
272 B
C++
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -S %s -o %t-64.s
// RUN: %clang_cc1 -S %s -o %t-32.s
2009-10-14 18:03:49 +00:00
extern "C" int printf(...);
struct S {
S() { printf("S::S\n"); }
};
struct A {
double x;
A() : x(), y(), s() { printf("x = %f y = %x \n", x, y); }
int *y;
S s;
};
A a;
int main() {
}