opnsense-src/test/CodeGenCXX/constructor-init-reference.cpp

10 lines
124 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"
2009-10-14 14:03:49 -04:00
int x;
class A {
int& y;
A() : y(x) {}
};
A z;