freebsd-nq/test/CodeGenCXX/constructor-init-reference.cpp
2010-05-04 16:12:48 +00:00

10 lines
125 B
C++

// RUN: %clang_cc1 -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"
int x;
struct A {
int& y;
A() : y(x) {}
};
A z;