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

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