freebsd-dev/test/CodeGenCXX/constructor-init-reference.cpp
2009-10-14 18:03:49 +00:00

10 lines
122 B
C++

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