blob: 5e751597651885b3e2b2c77329c1f8996d4afd94 [file] [log] [blame]
Shih-wei Liaoea285162010-06-04 12:34:56 -07001// RUN: %clang_cc1 -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"
2
3int x;
4struct A {
5 int& y;
6 A() : y(x) {}
7};
8A z;
9