1 // RUN: clang-cc -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"
2 
3 int x;
4 class A {
5   int& y;
6   A() : y(x) {}
7 };
8 A z;
9 
10