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