blob: e16cbb3fa617cb1ca5bd146fe4c7b88695063a97 [file] [log] [blame]
// RUN: %clang_cc1 -cxx-abi itanium -emit-llvm -o - %s | FileCheck %s
int x;
struct A {
int& y;
A() : y(x) {}
};
A z;
// CHECK: store i32* @x, i32**