freebsd-dev/test/CodeGenCXX/constructor-init-reference.cpp
2010-01-01 10:34:51 +00:00

10 lines
124 B
C++

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