summaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/constructor-init-reference.cpp
blob: 040441fde0f82e085b63b827bb78a60e34889abb (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang-cc -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"

int x;
class A {
  int& y;
  A() : y(x) {}
};
A z;