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