mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 08:50:22 -05:00
10 lines
122 B
C++
10 lines
122 B
C++
|
|
// RUN: clang-cc -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"
|
||
|
|
|
||
|
|
int x;
|
||
|
|
class A {
|
||
|
|
int& y;
|
||
|
|
A() : y(x) {}
|
||
|
|
};
|
||
|
|
A z;
|
||
|
|
|