blob: 5e751597651885b3e2b2c77329c1f8996d4afd94 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"
Eli Friedmane3a97db2009-08-29 20:58:20 +00002
3int x;
John McCall7002f4c2010-04-09 19:03:51 +00004struct A {
Eli Friedmane3a97db2009-08-29 20:58:20 +00005 int& y;
6 A() : y(x) {}
7};
8A z;
9