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

10 lines
125 B
C++
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"
2009-10-14 18:03:49 +00:00
int x;
2010-05-04 16:12:48 +00:00
struct A {
2009-10-14 18:03:49 +00:00
int& y;
A() : y(x) {}
};
A z;